UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

57 lines 1.6 kB
/** * fastcomments * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.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 UpdateAPIPageData */ export interface UpdateAPIPageData { /** * * @type {boolean} * @memberof UpdateAPIPageData */ isClosed?: boolean; /** * * @type {Array<string>} * @memberof UpdateAPIPageData */ accessibleByGroupIds?: Array<string>; /** * * @type {string} * @memberof UpdateAPIPageData */ title?: string; /** * * @type {string} * @memberof UpdateAPIPageData */ url?: string; /** * * @type {string} * @memberof UpdateAPIPageData */ urlId?: string; } /** * Check if a given object implements the UpdateAPIPageData interface. */ export declare function instanceOfUpdateAPIPageData(value: object): value is UpdateAPIPageData; export declare function UpdateAPIPageDataFromJSON(json: any): UpdateAPIPageData; export declare function UpdateAPIPageDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateAPIPageData; export declare function UpdateAPIPageDataToJSON(json: any): UpdateAPIPageData; export declare function UpdateAPIPageDataToJSONTyped(value?: UpdateAPIPageData | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateAPIPageData.d.ts.map