@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
69 lines (68 loc) • 1.82 kB
TypeScript
/**
* AskNews API
* AskNews API [](https://status.asknews.app/status/prod)
*
* The version of the OpenAPI document: 0.24.22
* 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 {string}
* @memberof ReadDomainResponse
*/
owner?: string | null;
/**
*
* @type {boolean}
* @memberof ReadDomainResponse
*/
isTollbit?: boolean;
/**
*
* @type {boolean}
* @memberof ReadDomainResponse
*/
publisher?: 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;