DBTEAMGroupMembersSetAccessTypeArg

Objective-C

@interface DBTEAMGroupMembersSetAccessTypeArg
    : DBTEAMGroupMemberSelector <DBSerializable, NSCopying>

Swift

class DBTEAMGroupMembersSetAccessTypeArg : DBTEAMGroupMemberSelector, DBSerializable, NSCopying

The GroupMembersSetAccessTypeArg struct.

This class implements the DBSerializable protocol (serialize and deserialize instance methods), which is required for all Obj-C SDK API route objects.

Instance fields

  • New group access type the user will have.

    Declaration

    Objective-C

    @property (nonatomic, readonly) DBTEAMGroupAccessType *_Nonnull accessType;

    Swift

    var accessType: DBTEAMGroupAccessType { get }
  • Whether to return the list of members in the group. Note that the default value will cause all the group members to be returned in the response. This may take a long time for large groups.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSNumber *_Nonnull returnMembers;

    Swift

    var returnMembers: NSNumber { get }

Constructors