Dropbox .NET SDK
Show / Hide Table of Contents

Class GroupCreateArg

The group create arg object

Inheritance
object
GroupCreateArg
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 GroupCreateArg

Constructors

View Source

GroupCreateArg(string, bool, string, GroupManagementType)

Initializes a new instance of the GroupCreateArg class.

Declaration
public GroupCreateArg(string groupName, bool addCreatorAsOwner = false, string groupExternalId = null, GroupManagementType groupManagementType = null)
Parameters
Type Name Description
string groupName

Group name.

bool addCreatorAsOwner

Automatically add the creator of the group.

string groupExternalId

The creator of a team can associate an arbitrary external ID to the group.

GroupManagementType groupManagementType

Whether the team can be managed by selected users, or only by team admins.

Properties

View Source

AddCreatorAsOwner

Automatically add the creator of the group.

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

GroupExternalId

The creator of a team can associate an arbitrary external ID to the group.

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

GroupManagementType

Whether the team can be managed by selected users, or only by team admins.

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

GroupName

Group name.

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