/**
 * @export
 * @class DnsMappingRequest
 */
export declare class DnsMappingRequest {
    /**
     * Subdomain used for the DNS mapping. It can only contain lowercase letters, numbers and dashes (-). It can be at most 63 characters long (required)
     * @type {string}
     * @memberof DnsMappingRequest
     */
    subdomain?: string;
    /**
     * Optional name for the DNS mapping
     * @type {string}
     * @memberof DnsMappingRequest
     */
    name?: string;
    /**
     * Optional description for the DNS mapping
     * @type {string}
     * @memberof DnsMappingRequest
     */
    description?: string;
    constructor(obj?: Partial<DnsMappingRequest>);
}
export default DnsMappingRequest;
