@getopenpay/client
Version:
OpenPay API TypeScript SDK
52 lines (51 loc) • 1.73 kB
TypeScript
/**
* OpenPay API
* super charge your subscription management.
*
* The version of the OpenAPI document: 1.2.1
*
*
* 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 { PaymentRouteExternal } from './PaymentRouteExternal';
/**
*
* @export
* @interface ListResponsePaymentRouteExternal
*/
export interface ListResponsePaymentRouteExternal {
/**
*
* @type {Array<PaymentRouteExternal>}
* @memberof ListResponsePaymentRouteExternal
*/
data: Array<PaymentRouteExternal>;
/**
*
* @type {number}
* @memberof ListResponsePaymentRouteExternal
*/
pageNumber: number;
/**
*
* @type {number}
* @memberof ListResponsePaymentRouteExternal
*/
pageSize: number;
/**
*
* @type {number}
* @memberof ListResponsePaymentRouteExternal
*/
totalObjects: number;
}
/**
* Check if a given object implements the ListResponsePaymentRouteExternal interface.
*/
export declare function instanceOfListResponsePaymentRouteExternal(value: object): value is ListResponsePaymentRouteExternal;
export declare function ListResponsePaymentRouteExternalFromJSON(json: any): ListResponsePaymentRouteExternal;
export declare function ListResponsePaymentRouteExternalFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListResponsePaymentRouteExternal;
export declare function ListResponsePaymentRouteExternalToJSON(json: any): ListResponsePaymentRouteExternal;
export declare function ListResponsePaymentRouteExternalToJSONTyped(value?: ListResponsePaymentRouteExternal | null, ignoreDiscriminator?: boolean): any;