Files
adyen-node-api-library/src/typings/management/listStoresResponse.ts
Wouter Boereboom c4e1c96736 Pw 6904/management api (#926)
* create first version of management api structure and
"me" endpoints

* change me/allowedOrigins response to fix bug in API Spec file
2022-07-25 08:57:09 +02:00

54 lines
1.3 KiB
TypeScript

/*
* The version of the OpenAPI document: v1
* Contact: developer-experience@adyen.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit this class manually.
*/
import { PaginationLinks } from './paginationLinks';
import { Store } from './store';
export class ListStoresResponse {
'links'?: PaginationLinks;
'data'?: Array<Store>;
/**
* Total number of items.
*/
'itemsTotal': number;
/**
* Total number of pages.
*/
'pagesTotal': number;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "links",
"baseName": "_links",
"type": "PaginationLinks"
},
{
"name": "data",
"baseName": "data",
"type": "Array<Store>"
},
{
"name": "itemsTotal",
"baseName": "itemsTotal",
"type": "number"
},
{
"name": "pagesTotal",
"baseName": "pagesTotal",
"type": "number"
} ];
static getAttributeTypeMap() {
return ListStoresResponse.attributeTypeMap;
}
}