UNPKG

fastcomments-sdk

Version:

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

45 lines 1.57 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 DeleteSubscriptionAPIResponse */ export interface DeleteSubscriptionAPIResponse { /** * * @type {string} * @memberof DeleteSubscriptionAPIResponse */ reason?: string; /** * * @type {string} * @memberof DeleteSubscriptionAPIResponse */ code?: string; /** * * @type {string} * @memberof DeleteSubscriptionAPIResponse */ status: string; } /** * Check if a given object implements the DeleteSubscriptionAPIResponse interface. */ export declare function instanceOfDeleteSubscriptionAPIResponse(value: object): value is DeleteSubscriptionAPIResponse; export declare function DeleteSubscriptionAPIResponseFromJSON(json: any): DeleteSubscriptionAPIResponse; export declare function DeleteSubscriptionAPIResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteSubscriptionAPIResponse; export declare function DeleteSubscriptionAPIResponseToJSON(json: any): DeleteSubscriptionAPIResponse; export declare function DeleteSubscriptionAPIResponseToJSONTyped(value?: DeleteSubscriptionAPIResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DeleteSubscriptionAPIResponse.d.ts.map