DBTEAMLOGSharedLinkDisableTypeSerializer
Objective-C
@interface DBTEAMLOGSharedLinkDisableTypeSerializer : NSObject
Swift
class DBTEAMLOGSharedLinkDisableTypeSerializer : NSObject
The serialization class for the SharedLinkDisableType
struct.
-
Serializes
DBTEAMLOGSharedLinkDisableType
instances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBTEAMLOGSharedLinkDisableType *)instance;
Swift
class func serialize(_ instance: DBTEAMLOGSharedLinkDisableType) -> [String : Any]?
Parameters
instance
An instance of the
DBTEAMLOGSharedLinkDisableType
API object.Return Value
A json-compatible dictionary representation of the
DBTEAMLOGSharedLinkDisableType
API object. -
Deserializes
DBTEAMLOGSharedLinkDisableType
instances.Declaration
Objective-C
+ (nonnull DBTEAMLOGSharedLinkDisableType *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;
Swift
class func deserialize(_ dict: [String : Any]) -> DBTEAMLOGSharedLinkDisableType
Parameters
dict
A json-compatible dictionary representation of the
DBTEAMLOGSharedLinkDisableType
API object.Return Value
An instantiation of the
DBTEAMLOGSharedLinkDisableType
object.