DBUSERSGetAccountBatchError
Objective-C
@interface DBUSERSGetAccountBatchError : NSObject <DBSerializable, NSCopying>
Swift
class DBUSERSGetAccountBatchError : NSObject, DBSerializable, NSCopying
The GetAccountBatchError
union.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Represents the union’s current tag state.
Declaration
Objective-C
@property (nonatomic, readonly) DBUSERSGetAccountBatchErrorTag tag;
Swift
var tag: DBUSERSGetAccountBatchErrorTag { get }
-
The value is an account ID specified in
accountIds
inDBUSERSGetAccountBatchArg
that does not exist. - note: Ensure theisNoAccount
method returns true before accessing, otherwise a runtime exception will be raised.Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull noAccount;
Swift
var noAccount: String { get }
-
Initializes union class with tag state of “no_account”.
Description of the “no_account” tag state: The value is an account ID specified in
accountIds
inDBUSERSGetAccountBatchArg
that does not exist.Declaration
Objective-C
- (nonnull instancetype)initWithNoAccount:(nonnull NSString *)noAccount;
Swift
init(noAccount: String)
Parameters
noAccount
The value is an account ID specified in
accountIds
inDBUSERSGetAccountBatchArg
that does not exist.Return Value
An initialized instance.
-
Initializes union class with tag state of “other”.
Declaration
Objective-C
- (nonnull instancetype)initWithOther;
Swift
init(other: ())
Return Value
An initialized instance.
-
Retrieves whether the union’s current tag state has value “no_account”.
Note
Call this method and ensure it returns true before accessing the
noAccount
property, otherwise a runtime exception will be thrown.Declaration
Objective-C
- (BOOL)isNoAccount;
Swift
func isNoAccount() -> Bool
Return Value
Whether the union’s current tag state has value “no_account”.
-
Retrieves whether the union’s current tag state has value “other”.
Declaration
Objective-C
- (BOOL)isOther;
Swift
func isOther() -> Bool
Return Value
Whether the union’s current tag state has value “other”.
-
Retrieves string value of union’s current tag state.
Declaration
Objective-C
- (nonnull NSString *)tagName;
Swift
func tagName() -> String
Return Value
A human-readable string representing the union’s current tag state.