UNPKG

fastcomments-sdk

Version:

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

51 lines 1.58 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 PutDomainConfigResponse */ export interface PutDomainConfigResponse { /** * * @type {any} * @memberof PutDomainConfigResponse */ _configuration: any | null; /** * * @type {any} * @memberof PutDomainConfigResponse */ status: any | null; /** * * @type {string} * @memberof PutDomainConfigResponse */ reason: string; /** * * @type {string} * @memberof PutDomainConfigResponse */ code: string; } /** * Check if a given object implements the PutDomainConfigResponse interface. */ export declare function instanceOfPutDomainConfigResponse(value: object): value is PutDomainConfigResponse; export declare function PutDomainConfigResponseFromJSON(json: any): PutDomainConfigResponse; export declare function PutDomainConfigResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PutDomainConfigResponse; export declare function PutDomainConfigResponseToJSON(json: any): PutDomainConfigResponse; export declare function PutDomainConfigResponseToJSONTyped(value?: PutDomainConfigResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PutDomainConfigResponse.d.ts.map