Show / Hide Table of Contents

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 Source

GroupCreateArg(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 Source

AddCreatorAsOwner

Automatically add the creator of the group.

Declaration
public bool AddCreatorAsOwner { get; protected set; }
Property Value
Type Description
System.Boolean
| Improve this Doc 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
System.String
| Improve this Doc 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
| Improve this Doc View Source

GroupName

Group name.

Declaration
public string GroupName { get; protected set; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • GroupCreateArg(String, Boolean, String, GroupManagementType)
  • Properties
    • AddCreatorAsOwner
    • GroupExternalId
    • GroupManagementType
    • GroupName
Back to top Generated by DocFX