@getopenpay/client
Version:
OpenPay API TypeScript SDK
52 lines (51 loc) • 1.62 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 { ProductExternal } from './ProductExternal';
/**
*
* @export
* @interface ListResponseProductExternal
*/
export interface ListResponseProductExternal {
/**
*
* @type {Array<ProductExternal>}
* @memberof ListResponseProductExternal
*/
data: Array<ProductExternal>;
/**
*
* @type {number}
* @memberof ListResponseProductExternal
*/
pageNumber: number;
/**
*
* @type {number}
* @memberof ListResponseProductExternal
*/
pageSize: number;
/**
*
* @type {number}
* @memberof ListResponseProductExternal
*/
totalObjects: number;
}
/**
* Check if a given object implements the ListResponseProductExternal interface.
*/
export declare function instanceOfListResponseProductExternal(value: object): value is ListResponseProductExternal;
export declare function ListResponseProductExternalFromJSON(json: any): ListResponseProductExternal;
export declare function ListResponseProductExternalFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListResponseProductExternal;
export declare function ListResponseProductExternalToJSON(json: any): ListResponseProductExternal;
export declare function ListResponseProductExternalToJSONTyped(value?: ListResponseProductExternal | null, ignoreDiscriminator?: boolean): any;