/** * 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 { CouponResource } from './CouponResource'; /** * * @export * @interface PaginatedCouponResourceResponse */ export interface PaginatedCouponResourceResponse { /** * * @type {Array} * @memberof PaginatedCouponResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedCouponResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedCouponResourceResponse interface. */ export declare function instanceOfPaginatedCouponResourceResponse(value: object): value is PaginatedCouponResourceResponse; export declare function PaginatedCouponResourceResponseFromJSON(json: any): PaginatedCouponResourceResponse; export declare function PaginatedCouponResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedCouponResourceResponse; export declare function PaginatedCouponResourceResponseToJSON(json: any): PaginatedCouponResourceResponse; export declare function PaginatedCouponResourceResponseToJSONTyped(value?: PaginatedCouponResourceResponse | null, ignoreDiscriminator?: boolean): any;