class SealdAccountInfo
objc
@interface SealdAccountInfo : NSObjectSealdAccountInfo is returned when calling SealdSdk.createAccountWithSignupJwt:deviceName:displayName:expireAfter:error: or getCurrentAccountInfo (SealdSdk), containing information about the local account.
| Members | Descriptions |
|---|---|
userId | The ID of the current user for this SDK instance. |
deviceId | The ID of the current device for this SDK instance. |
deviceExpires | The date at which the current device keys expire. For continued operation, renew your device keys before this date. nil if it is not known locally: use updateCurrentDeviceWithError: (SealdSdk) to retrieve it. |
userId
objc
@property (strong, readonly) NSString * userId;The ID of the current user for this SDK instance.
deviceId
objc
@property (strong, readonly) NSString * deviceId;The ID of the current device for this SDK instance.
deviceExpires
objc
@property (strong, readonly) NSDate * deviceExpires;The date at which the current device keys expire. For continued operation, renew your device keys before this date. nil if it is not known locally: use updateCurrentDeviceWithError: (SealdSdk) to retrieve it.