/** * 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 { TransactionListResource } from './TransactionListResource'; /** * * @export * @interface TransactionListResourceArrayResponse */ export interface TransactionListResourceArrayResponse { /** * * @type {Array} * @memberof TransactionListResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the TransactionListResourceArrayResponse interface. */ export declare function instanceOfTransactionListResourceArrayResponse(value: object): value is TransactionListResourceArrayResponse; export declare function TransactionListResourceArrayResponseFromJSON(json: any): TransactionListResourceArrayResponse; export declare function TransactionListResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionListResourceArrayResponse; export declare function TransactionListResourceArrayResponseToJSON(json: any): TransactionListResourceArrayResponse; export declare function TransactionListResourceArrayResponseToJSONTyped(value?: TransactionListResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;