UNPKG

fastcomments-sdk

Version:

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

52 lines 1.78 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. */ import type { APIUserSubscription } from './APIUserSubscription'; /** * * @export * @interface CreateSubscriptionAPIResponse */ export interface CreateSubscriptionAPIResponse { /** * * @type {string} * @memberof CreateSubscriptionAPIResponse */ reason?: string; /** * * @type {string} * @memberof CreateSubscriptionAPIResponse */ code?: string; /** * * @type {APIUserSubscription} * @memberof CreateSubscriptionAPIResponse */ subscription?: APIUserSubscription; /** * * @type {string} * @memberof CreateSubscriptionAPIResponse */ status: string; } /** * Check if a given object implements the CreateSubscriptionAPIResponse interface. */ export declare function instanceOfCreateSubscriptionAPIResponse(value: object): value is CreateSubscriptionAPIResponse; export declare function CreateSubscriptionAPIResponseFromJSON(json: any): CreateSubscriptionAPIResponse; export declare function CreateSubscriptionAPIResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateSubscriptionAPIResponse; export declare function CreateSubscriptionAPIResponseToJSON(json: any): CreateSubscriptionAPIResponse; export declare function CreateSubscriptionAPIResponseToJSONTyped(value?: CreateSubscriptionAPIResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateSubscriptionAPIResponse.d.ts.map