PutSchemaVersionMetadataResponse.fromJson constructor

PutSchemaVersionMetadataResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory PutSchemaVersionMetadataResponse.fromJson(Map<String, dynamic> json) {
  return PutSchemaVersionMetadataResponse(
    latestVersion: json['LatestVersion'] as bool?,
    metadataKey: json['MetadataKey'] as String?,
    metadataValue: json['MetadataValue'] as String?,
    registryName: json['RegistryName'] as String?,
    schemaArn: json['SchemaArn'] as String?,
    schemaName: json['SchemaName'] as String?,
    schemaVersionId: json['SchemaVersionId'] as String?,
    versionNumber: json['VersionNumber'] as int?,
  );
}