RLMUserAPIKey

@interface RLMUserAPIKey : NSObject

UserAPIKey model for APIKeys recevied from the server.

  • Indicates if the API key is disabled or not

    Declaration

    Objective-C

    @property (readonly, nonatomic) BOOL disabled;
  • The name of the key.

    Declaration

    Objective-C

    @property (readonly, nonatomic) NSString *_Nonnull name;
  • key

    The actual key. Will only be included in the response when an API key is first created.

    Declaration

    Objective-C

    @property (readonly, nonatomic, nullable) NSString *key;
  • The ObjectId of the user

    Declaration

    Objective-C

    @property (readonly, nonatomic) RLMObjectId *_Nonnull objectId;