toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final caPool = this.caPool;
  final createTime = this.createTime;
  final customTlsFeatures = this.customTlsFeatures;
  final description = this.description;
  final excludePublicCaSet = this.excludePublicCaSet;
  final minTlsVersion = this.minTlsVersion;
  final name = this.name;
  final tlsFeatureProfile = this.tlsFeatureProfile;
  final trustConfig = this.trustConfig;
  final updateTime = this.updateTime;
  return {
    'caPool': ?caPool,
    'createTime': ?createTime,
    'customTlsFeatures': ?customTlsFeatures,
    'description': ?description,
    'excludePublicCaSet': ?excludePublicCaSet,
    'minTlsVersion': ?minTlsVersion,
    'name': ?name,
    'tlsFeatureProfile': ?tlsFeatureProfile,
    'trustConfig': ?trustConfig,
    'updateTime': ?updateTime,
  };
}