Dropbox .NET SDK
Show / Hide Table of Contents

Class RevokeLinkedApiAppArg

The revoke linked api app arg object

Inheritance
object
RevokeLinkedApiAppArg
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class RevokeLinkedApiAppArg

Constructors

View Source

RevokeLinkedApiAppArg(string, string, bool)

Initializes a new instance of the RevokeLinkedApiAppArg class.

Declaration
public RevokeLinkedApiAppArg(string appId, string teamMemberId, bool keepAppFolder = true)
Parameters
Type Name Description
string appId

The application's unique id.

string teamMemberId

The unique id of the member owning the device.

bool keepAppFolder

Field is deprecated. This flag is not longer supported, the application dedicated folder (in case the application uses one) will be kept.

Properties

View Source

AppId

The application's unique id.

Declaration
public string AppId { get; protected set; }
Property Value
Type Description
string
View Source

KeepAppFolder

Field is deprecated. This flag is not longer supported, the application dedicated folder (in case the application uses one) will be kept.

Declaration
public bool KeepAppFolder { get; protected set; }
Property Value
Type Description
bool
View Source

TeamMemberId

The unique id of the member owning the device.

Declaration
public string TeamMemberId { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK