/** * 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 { TransactionResource } from './TransactionResource'; /** * * @export * @interface PaginatedTransactionResourceResponse */ export interface PaginatedTransactionResourceResponse { /** * * @type {Array} * @memberof PaginatedTransactionResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedTransactionResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedTransactionResourceResponse interface. */ export declare function instanceOfPaginatedTransactionResourceResponse(value: object): value is PaginatedTransactionResourceResponse; export declare function PaginatedTransactionResourceResponseFromJSON(json: any): PaginatedTransactionResourceResponse; export declare function PaginatedTransactionResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedTransactionResourceResponse; export declare function PaginatedTransactionResourceResponseToJSON(json: any): PaginatedTransactionResourceResponse; export declare function PaginatedTransactionResourceResponseToJSONTyped(value?: PaginatedTransactionResourceResponse | null, ignoreDiscriminator?: boolean): any;