ApplySchemaResponse.fromJson constructor
Implementation
factory ApplySchemaResponse.fromJson(Map<String, dynamic> json) {
return ApplySchemaResponse(
appliedSchemaArn: json['AppliedSchemaArn'] as String?,
directoryArn: json['DirectoryArn'] as String?,
);
}