toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final certificateDomainMismatchCountryList =
      this.certificateDomainMismatchCountryList;
  final certificateMissingCountryList = this.certificateMissingCountryList;
  final countryConstraint = this.countryConstraint;
  final globalCertificateDomainMismatch =
      this.globalCertificateDomainMismatch;
  final globalCertificateMissing = this.globalCertificateMissing;
  final requestCertificateFormLink = this.requestCertificateFormLink;
  final resellerConstraint = this.resellerConstraint;
  return {
    'certificateDomainMismatchCountryList':
        ?certificateDomainMismatchCountryList,
    'certificateMissingCountryList': ?certificateMissingCountryList,
    'countryConstraint': ?countryConstraint,
    'globalCertificateDomainMismatch': ?globalCertificateDomainMismatch,
    'globalCertificateMissing': ?globalCertificateMissing,
    'requestCertificateFormLink': ?requestCertificateFormLink,
    'resellerConstraint': ?resellerConstraint,
  };
}