Class GroupCreateArg
The group create arg object
Inheritance
System.Object
GroupCreateArg
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 GroupCreateArg
Constructors
| Improve this Doc View SourceGroupCreateArg(String, Boolean, 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 |
---|---|---|
System.String | groupName | Group name. |
System.Boolean | addCreatorAsOwner | Automatically add the creator of the group. |
System.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
| Improve this Doc View SourceAddCreatorAsOwner
Automatically add the creator of the group.
Declaration
public bool AddCreatorAsOwner { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |
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 |
---|---|
System.String |
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 |
GroupName
Group name.
Declaration
public string GroupName { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |