BatchDetachFromIndexResponse.fromJson constructor

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

Implementation

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