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