/* tslint:disable */
/* eslint-disable */
/**
* Squad API
* API for managing Squad resources
*
* The version of the OpenAPI document: 2.4.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { mapValues } from '../runtime.js';
import type { MockFeedbackResponseInner } from './MockFeedbackResponseInner.js';
import {
MockFeedbackResponseInnerFromJSON,
MockFeedbackResponseInnerFromJSONTyped,
MockFeedbackResponseInnerToJSON,
MockFeedbackResponseInnerToJSONTyped,
} from './MockFeedbackResponseInner.js';
/**
* Array of mock feedback strings
* @export
* @interface MockFeedbackResponse
*/
export interface MockFeedbackResponse extends Array<MockFeedbackResponseInner> {
}
/**
* Check if a given object implements the MockFeedbackResponse interface.
*/
export function instanceOfMockFeedbackResponse(value: object): value is MockFeedbackResponse {
return true;
}
export function MockFeedbackResponseFromJSON(json: any): MockFeedbackResponse {
return MockFeedbackResponseFromJSONTyped(json, false);
}
export function MockFeedbackResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): MockFeedbackResponse {
return json;
}
export function MockFeedbackResponseToJSON(json: any): MockFeedbackResponse {
return MockFeedbackResponseToJSONTyped(json, false);
}
export function MockFeedbackResponseToJSONTyped(value?: MockFeedbackResponse | null, ignoreDiscriminator: boolean = false): any {
return value;
}