import BitmovinResource from './BitmovinResource'; /** * @export * @class DnsMappingResponse */ export declare class DnsMappingResponse extends BitmovinResource { /** * Subdomain used for the DNS mapping * @type {string} * @memberof DnsMappingResponse */ subdomain?: string; /** * Resolved hostname for the DNS mapping * @type {string} * @memberof DnsMappingResponse */ hostname?: string; /** * ID of the encoding this DNS mapping belongs to * @type {string} * @memberof DnsMappingResponse */ encodingId?: string; /** * IP address that the hostname resolves to * @type {string} * @memberof DnsMappingResponse */ ip?: string; constructor(obj?: Partial); } export default DnsMappingResponse;