/** * 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 type { PagingMetadata } from './PagingMetadata'; import type { GoogleCategoryResource } from './GoogleCategoryResource'; /** * * @export * @interface PaginatedGoogleCategoryResourceResponse */ export interface PaginatedGoogleCategoryResourceResponse { /** * * @type {Array} * @memberof PaginatedGoogleCategoryResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedGoogleCategoryResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedGoogleCategoryResourceResponse interface. */ export declare function instanceOfPaginatedGoogleCategoryResourceResponse(value: object): value is PaginatedGoogleCategoryResourceResponse; export declare function PaginatedGoogleCategoryResourceResponseFromJSON(json: any): PaginatedGoogleCategoryResourceResponse; export declare function PaginatedGoogleCategoryResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedGoogleCategoryResourceResponse; export declare function PaginatedGoogleCategoryResourceResponseToJSON(json: any): PaginatedGoogleCategoryResourceResponse; export declare function PaginatedGoogleCategoryResourceResponseToJSONTyped(value?: PaginatedGoogleCategoryResourceResponse | null, ignoreDiscriminator?: boolean): any;