toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final careerSiteUri = this.careerSiteUri;
  final derivedInfo = this.derivedInfo;
  final displayName = this.displayName;
  final eeoText = this.eeoText;
  final externalId = this.externalId;
  final headquartersAddress = this.headquartersAddress;
  final hiringAgency = this.hiringAgency;
  final imageUri = this.imageUri;
  final keywordSearchableJobCustomAttributes =
      this.keywordSearchableJobCustomAttributes;
  final name = this.name;
  final size = this.size;
  final suspended = this.suspended;
  final websiteUri = this.websiteUri;
  return {
    'careerSiteUri': ?careerSiteUri,
    'derivedInfo': ?derivedInfo,
    'displayName': ?displayName,
    'eeoText': ?eeoText,
    'externalId': ?externalId,
    'headquartersAddress': ?headquartersAddress,
    'hiringAgency': ?hiringAgency,
    'imageUri': ?imageUri,
    'keywordSearchableJobCustomAttributes':
        ?keywordSearchableJobCustomAttributes,
    'name': ?name,
    'size': ?size,
    'suspended': ?suspended,
    'websiteUri': ?websiteUri,
  };
}