toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accountId = this.accountId;
  final advertiserId = this.advertiserId;
  final approverUserProfileIds = this.approverUserProfileIds;
  final buyerInvoiceId = this.buyerInvoiceId;
  final buyerOrganizationName = this.buyerOrganizationName;
  final comments = this.comments;
  final contacts = this.contacts;
  final id = this.id;
  final kind = this.kind;
  final lastModifiedInfo = this.lastModifiedInfo;
  final name = this.name;
  final notes = this.notes;
  final planningTermId = this.planningTermId;
  final projectId = this.projectId;
  final sellerOrderId = this.sellerOrderId;
  final sellerOrganizationName = this.sellerOrganizationName;
  final siteId = this.siteId;
  final siteNames = this.siteNames;
  final subaccountId = this.subaccountId;
  final termsAndConditions = this.termsAndConditions;
  return {
    'accountId': ?accountId,
    'advertiserId': ?advertiserId,
    'approverUserProfileIds': ?approverUserProfileIds,
    'buyerInvoiceId': ?buyerInvoiceId,
    'buyerOrganizationName': ?buyerOrganizationName,
    'comments': ?comments,
    'contacts': ?contacts,
    'id': ?id,
    'kind': ?kind,
    'lastModifiedInfo': ?lastModifiedInfo,
    'name': ?name,
    'notes': ?notes,
    'planningTermId': ?planningTermId,
    'projectId': ?projectId,
    'sellerOrderId': ?sellerOrderId,
    'sellerOrganizationName': ?sellerOrganizationName,
    'siteId': ?siteId,
    'siteNames': ?siteNames,
    'subaccountId': ?subaccountId,
    'termsAndConditions': ?termsAndConditions,
  };
}