UpdateObjectAttributesResponse.fromJson constructor

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

Implementation

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