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 GetDomainConfigResponse */ export interface GetDomainConfigResponse { /** * * @type {any} * @memberof GetDomainConfigResponse */ _configuration: any | null; /** * * @type {any} * @memberof GetDomainConfigResponse */ status: any | null; /** * * @type {string} * @memberof GetDomainConfigResponse */ reason: string; /** * * @type {string} * @memberof GetDomainConfigResponse */ code: string; } /** * Check if a given object implements the GetDomainConfigResponse interface. */ export declare function instanceOfGetDomainConfigResponse(value: object): value is GetDomainConfigResponse; export declare function GetDomainConfigResponseFromJSON(json: any): GetDomainConfigResponse; export declare function GetDomainConfigResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetDomainConfigResponse; export declare function GetDomainConfigResponseToJSON(json: any): GetDomainConfigResponse; export declare function GetDomainConfigResponseToJSONTyped(value?: GetDomainConfigResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetDomainConfigResponse.d.ts.map