@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
57 lines (56 loc) • 1.48 kB
TypeScript
/**
* AskNews API
* AskNews API
*
* The version of the OpenAPI document: 0.21.1
* Contact: contact@emergentmethods.ai
*
* 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 ReadDomainResponse
*/
export interface ReadDomainResponse {
/**
*
* @type {string}
* @memberof ReadDomainResponse
*/
id: string;
/**
*
* @type {string}
* @memberof ReadDomainResponse
*/
name: string;
/**
*
* @type {boolean}
* @memberof ReadDomainResponse
*/
isTollbit?: boolean;
/**
*
* @type {Date}
* @memberof ReadDomainResponse
*/
createdAt: Date;
/**
*
* @type {Date}
* @memberof ReadDomainResponse
*/
updatedAt?: Date | null;
}
/**
* Check if a given object implements the ReadDomainResponse interface.
*/
export declare function instanceOfReadDomainResponse(value: object): value is ReadDomainResponse;
export declare function ReadDomainResponseFromJSON(json: any): ReadDomainResponse;
export declare function ReadDomainResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReadDomainResponse;
export declare function ReadDomainResponseToJSON(json: any): ReadDomainResponse;
export declare function ReadDomainResponseToJSONTyped(value?: ReadDomainResponse | null, ignoreDiscriminator?: boolean): any;