fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
52 lines • 1.78 kB
TypeScript
/**
* 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 UpdateSubscriptionAPIResponse
*/
export interface UpdateSubscriptionAPIResponse {
/**
*
* @type {string}
* @memberof UpdateSubscriptionAPIResponse
*/
reason?: string;
/**
*
* @type {string}
* @memberof UpdateSubscriptionAPIResponse
*/
code?: string;
/**
*
* @type {APIUserSubscription}
* @memberof UpdateSubscriptionAPIResponse
*/
subscription?: APIUserSubscription;
/**
*
* @type {string}
* @memberof UpdateSubscriptionAPIResponse
*/
status: string;
}
/**
* Check if a given object implements the UpdateSubscriptionAPIResponse interface.
*/
export declare function instanceOfUpdateSubscriptionAPIResponse(value: object): value is UpdateSubscriptionAPIResponse;
export declare function UpdateSubscriptionAPIResponseFromJSON(json: any): UpdateSubscriptionAPIResponse;
export declare function UpdateSubscriptionAPIResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateSubscriptionAPIResponse;
export declare function UpdateSubscriptionAPIResponseToJSON(json: any): UpdateSubscriptionAPIResponse;
export declare function UpdateSubscriptionAPIResponseToJSONTyped(value?: UpdateSubscriptionAPIResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=UpdateSubscriptionAPIResponse.d.ts.map