channel3-sdk
Version:
The official TypeScript/JavaScript SDK for Channel3 AI Shopping API
41 lines • 1.47 kB
TypeScript
/**
* FastAPI
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.1.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 { Brand } from './Brand';
import type { PaginationMeta } from './PaginationMeta';
/**
*
* @export
* @interface PaginatedResponseBrand
*/
export interface PaginatedResponseBrand {
/**
*
* @type {Array<Brand>}
* @memberof PaginatedResponseBrand
*/
items: Array<Brand>;
/**
*
* @type {PaginationMeta}
* @memberof PaginatedResponseBrand
*/
pagination: PaginationMeta;
}
/**
* Check if a given object implements the PaginatedResponseBrand interface.
*/
export declare function instanceOfPaginatedResponseBrand(value: object): value is PaginatedResponseBrand;
export declare function PaginatedResponseBrandFromJSON(json: any): PaginatedResponseBrand;
export declare function PaginatedResponseBrandFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedResponseBrand;
export declare function PaginatedResponseBrandToJSON(json: any): PaginatedResponseBrand;
export declare function PaginatedResponseBrandToJSONTyped(value?: PaginatedResponseBrand | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=PaginatedResponseBrand.d.ts.map