DBTEAMListMembersAppsArg
Objective-C
@interface DBTEAMListMembersAppsArg : NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMListMembersAppsArg : NSObject, DBSerializable, NSCopying
The ListMembersAppsArg struct.
Arguments for linkedAppsListMembersLinkedApps.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
At the first call to the
linkedAppsListMembersLinkedAppsthe cursor shouldn’t be passed. Then, if the result of the call includes a cursor, the following requests should include the received cursors in order to receive the next sub list of the team applications.Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *cursor;Swift
var cursor: String? { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithCursor:(nullable NSString *)cursor;Swift
init(cursor: String?)Parameters
cursorAt the first call to the
linkedAppsListMembersLinkedAppsthe cursor shouldn’t be passed. Then, if the result of the call includes a cursor, the following requests should include the received cursors in order to receive the next sub list of the team applications.Return Value
An initialized instance.
-
Convenience constructor (exposes only non-nullable instance variables with no default value).
Declaration
Objective-C
- (nonnull instancetype)initDefault;Swift
init(default: ())Return Value
An initialized instance.
View on GitHub
DBTEAMListMembersAppsArg Class Reference