toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final certificateId = this.certificateId;
  final pendingManagedCertificateId = this.pendingManagedCertificateId;
  final sslManagementType = this.sslManagementType;
  return {
    'certificateId': ?certificateId,
    'pendingManagedCertificateId': ?pendingManagedCertificateId,
    'sslManagementType': ?sslManagementType,
  };
}