BatchAttachObjectResponse.fromJson constructor

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

Implementation

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