toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accountId = this.accountId;
final active = this.active;
final advertiserId = this.advertiserId;
final advertiserIdDimensionValue = this.advertiserIdDimensionValue;
final description = this.description;
final id = this.id;
final kind = this.kind;
final lifeSpan = this.lifeSpan;
final listPopulationRule = this.listPopulationRule;
final listSize = this.listSize;
final listSource = this.listSource;
final name = this.name;
final subaccountId = this.subaccountId;
return {
'accountId': ?accountId,
'active': ?active,
'advertiserId': ?advertiserId,
'advertiserIdDimensionValue': ?advertiserIdDimensionValue,
'description': ?description,
'id': ?id,
'kind': ?kind,
'lifeSpan': ?lifeSpan,
'listPopulationRule': ?listPopulationRule,
'listSize': ?listSize,
'listSource': ?listSource,
'name': ?name,
'subaccountId': ?subaccountId,
};
}