12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- #import <Realm/Realm.h>
- #import <Realm/RLMSyncUtil.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RLMSyncPermissionOfferResponse : RLMObject
- @property (readonly) NSString *id;
- @property (readonly) NSDate *createdAt;
- @property (readonly) NSDate *updatedAt;
- @property (nullable, readonly) NSNumber<RLMInt> *statusCode;
- @property (nullable, readonly) NSString *statusMessage;
- @property (readonly) RLMSyncManagementObjectStatus status;
- @property (readonly) NSString *token;
- @property (nullable, readonly) NSString *realmUrl;
- + (instancetype)permissionOfferResponseWithToken:(NSString *)token;
- @end
- NS_ASSUME_NONNULL_END
|