BatchAttachToIndexResponse.fromJson constructor

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

Implementation

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