DBTEAMListTeamAppsArg
Objective-C
@interface DBTEAMListTeamAppsArg : NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMListTeamAppsArg : NSObject, DBSerializable, NSCopying
The ListTeamAppsArg
struct.
Arguments for linkedAppsListTeamLinkedApps
.
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
linkedAppsListTeamLinkedApps
the 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
cursor
At the first call to the
linkedAppsListTeamLinkedApps
the 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.