DBTEAMRevokeDeviceSessionBatchArg
Objective-C
@interface DBTEAMRevokeDeviceSessionBatchArg
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMRevokeDeviceSessionBatchArg : NSObject, DBSerializable, NSCopying
The RevokeDeviceSessionBatchArg
struct.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
(no description).
Declaration
Objective-C
@property (nonatomic, readonly) NSArray<DBTEAMRevokeDeviceSessionArg *> *_Nonnull revokeDevices;
Swift
var revokeDevices: [DBTEAMRevokeDeviceSessionArg] { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithRevokeDevices: (nonnull NSArray<DBTEAMRevokeDeviceSessionArg *> *)revokeDevices;
Swift
init(revokeDevices: [DBTEAMRevokeDeviceSessionArg])
Parameters
revokeDevices
(no description).
Return Value
An initialized instance.