BatchCreateObjectResponse.fromJson constructor

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

Implementation

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