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