/**
 * AskNews API
 * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod)
 *
 * The version of the OpenAPI document: 0.24.66
 * 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 UpdateDomainRequest
 */
export interface UpdateDomainRequest {
    /**
     *
     * @type {string}
     * @memberof UpdateDomainRequest
     */
    owner?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof UpdateDomainRequest
     */
    isTollbit?: boolean | null;
    /**
     *
     * @type {string}
     * @memberof UpdateDomainRequest
     */
    publisher?: string | null;
}
/**
 * Check if a given object implements the UpdateDomainRequest interface.
 */
export declare function instanceOfUpdateDomainRequest(value: object): value is UpdateDomainRequest;
export declare function UpdateDomainRequestFromJSON(json: any): UpdateDomainRequest;
export declare function UpdateDomainRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateDomainRequest;
export declare function UpdateDomainRequestToJSON(json: any): UpdateDomainRequest;
export declare function UpdateDomainRequestToJSONTyped(value?: UpdateDomainRequest | null, ignoreDiscriminator?: boolean): any;
