/* tslint:disable */ /* eslint-disable */ /** * My API * API documentation for my Laravel app * * The version of the OpenAPI document: 1.0.0 * * * 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'; import type { PageResource } from './PageResource'; import { PageResourceFromJSON, PageResourceFromJSONTyped, PageResourceToJSON, PageResourceToJSONTyped, } from './PageResource'; /** * * @export * @interface PageResourceArrayResponse */ export interface PageResourceArrayResponse { /** * * @type {Array} * @memberof PageResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the PageResourceArrayResponse interface. */ export function instanceOfPageResourceArrayResponse(value: object): value is PageResourceArrayResponse { return true; } export function PageResourceArrayResponseFromJSON(json: any): PageResourceArrayResponse { return PageResourceArrayResponseFromJSONTyped(json, false); } export function PageResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PageResourceArrayResponse { if (json == null) { return json; } return { 'data': json['data'] == null ? undefined : ((json['data'] as Array).map(PageResourceFromJSON)), }; } export function PageResourceArrayResponseToJSON(json: any): PageResourceArrayResponse { return PageResourceArrayResponseToJSONTyped(json, false); } export function PageResourceArrayResponseToJSONTyped(value?: PageResourceArrayResponse | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'data': value['data'] == null ? undefined : ((value['data'] as Array).map(PageResourceToJSON)), }; }