flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
58 lines (57 loc) • 1.57 kB
TypeScript
/**
* FlowUs API
* FlowUs Developer API
*
* 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.
*/
/**
*
* @export
* @interface PaginatedList
*/
export interface PaginatedList {
/**
*
* @type {string}
* @memberof PaginatedList
*/
object?: PaginatedListObjectEnum;
/**
*
* @type {Array<any>}
* @memberof PaginatedList
*/
results?: Array<any>;
/**
* 下一页游标,使用最后一个项目的ID作为游标值
* @type {string}
* @memberof PaginatedList
*/
next_cursor?: string;
/**
*
* @type {boolean}
* @memberof PaginatedList
*/
has_more?: boolean;
}
/**
* @export
*/
export declare const PaginatedListObjectEnum: {
readonly List: "list";
};
export type PaginatedListObjectEnum = typeof PaginatedListObjectEnum[keyof typeof PaginatedListObjectEnum];
/**
* Check if a given object implements the PaginatedList interface.
*/
export declare function instanceOfPaginatedList(value: object): value is PaginatedList;
export declare function PaginatedListFromJSON(json: any): PaginatedList;
export declare function PaginatedListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedList;
export declare function PaginatedListToJSON(json: any): PaginatedList;
export declare function PaginatedListToJSONTyped(value?: PaginatedList | null, ignoreDiscriminator?: boolean): any;