EditCustomerMatchMembersRequest.fromJson constructor
EditCustomerMatchMembersRequest.fromJson(
- Map json_
Implementation
EditCustomerMatchMembersRequest.fromJson(core.Map json_)
: this(
addedContactInfoList: json_.containsKey('addedContactInfoList')
? ContactInfoList.fromJson(json_['addedContactInfoList']
as core.Map<core.String, core.dynamic>)
: null,
addedMobileDeviceIdList: json_.containsKey('addedMobileDeviceIdList')
? MobileDeviceIdList.fromJson(json_['addedMobileDeviceIdList']
as core.Map<core.String, core.dynamic>)
: null,
advertiserId: json_.containsKey('advertiserId')
? json_['advertiserId'] as core.String
: null,
removedContactInfoList: json_.containsKey('removedContactInfoList')
? ContactInfoList.fromJson(json_['removedContactInfoList']
as core.Map<core.String, core.dynamic>)
: null,
removedMobileDeviceIdList: json_
.containsKey('removedMobileDeviceIdList')
? MobileDeviceIdList.fromJson(json_['removedMobileDeviceIdList']
as core.Map<core.String, core.dynamic>)
: null,
);