fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
51 lines • 1.6 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.
*/
/**
*
* @export
* @interface GetDomainConfigsResponse
*/
export interface GetDomainConfigsResponse {
/**
*
* @type {any}
* @memberof GetDomainConfigsResponse
*/
configurations: any | null;
/**
*
* @type {any}
* @memberof GetDomainConfigsResponse
*/
status: any | null;
/**
*
* @type {string}
* @memberof GetDomainConfigsResponse
*/
reason: string;
/**
*
* @type {string}
* @memberof GetDomainConfigsResponse
*/
code: string;
}
/**
* Check if a given object implements the GetDomainConfigsResponse interface.
*/
export declare function instanceOfGetDomainConfigsResponse(value: object): value is GetDomainConfigsResponse;
export declare function GetDomainConfigsResponseFromJSON(json: any): GetDomainConfigsResponse;
export declare function GetDomainConfigsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetDomainConfigsResponse;
export declare function GetDomainConfigsResponseToJSON(json: any): GetDomainConfigsResponse;
export declare function GetDomainConfigsResponseToJSONTyped(value?: GetDomainConfigsResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetDomainConfigsResponse.d.ts.map