BatchUpdateObjectAttributesResponse.fromJson constructor

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

Implementation

factory BatchUpdateObjectAttributesResponse.fromJson(
    Map<String, dynamic> json) {
  return BatchUpdateObjectAttributesResponse(
    objectIdentifier: json['ObjectIdentifier'] as String?,
  );
}