toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final buyerContacts = this.buyerContacts;
final client = this.client;
final displayName = this.displayName;
final estimatedGrossSpend = this.estimatedGrossSpend;
final flightEndTime = this.flightEndTime;
final flightStartTime = this.flightStartTime;
final geoTargeting = this.geoTargeting;
final inventorySizeTargeting = this.inventorySizeTargeting;
final note = this.note;
final preferredDealTerms = this.preferredDealTerms;
final programmaticGuaranteedTerms = this.programmaticGuaranteedTerms;
final publisherProfile = this.publisherProfile;
return {
'buyerContacts': ?buyerContacts,
'client': ?client,
'displayName': ?displayName,
'estimatedGrossSpend': ?estimatedGrossSpend,
'flightEndTime': ?flightEndTime,
'flightStartTime': ?flightStartTime,
'geoTargeting': ?geoTargeting,
'inventorySizeTargeting': ?inventorySizeTargeting,
'note': ?note,
'preferredDealTerms': ?preferredDealTerms,
'programmaticGuaranteedTerms': ?programmaticGuaranteedTerms,
'publisherProfile': ?publisherProfile,
};
}