Class ApiApp
Information on linked third party applications.
Inheritance
System.Object
ApiApp
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class ApiApp
Constructors
| Improve this Doc View SourceApiApp(String, String, Boolean, String, String, Nullable<DateTime>)
Initializes a new instance of the ApiApp class.
Declaration
public ApiApp(string appId, string appName, bool isAppFolder, string publisher = null, string publisherUrl = null, DateTime? linked = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | appId | The application unique id. |
System.String | appName | The application name. |
System.Boolean | isAppFolder | Whether the linked application uses a dedicated folder. |
System.String | publisher | The application publisher name. |
System.String | publisherUrl | The publisher's URL. |
System.Nullable<System.DateTime> | linked | The time this application was linked. |
Properties
| Improve this Doc View SourceAppId
The application unique id.
Declaration
public string AppId { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
AppName
The application name.
Declaration
public string AppName { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
IsAppFolder
Whether the linked application uses a dedicated folder.
Declaration
public bool IsAppFolder { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Linked
The time this application was linked.
Declaration
public DateTime? Linked { get; protected set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
Publisher
The application publisher name.
Declaration
public string Publisher { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
PublisherUrl
The publisher's URL.
Declaration
public string PublisherUrl { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |