@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
34 lines (33 loc) • 829 B
TypeScript
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<DnsMappingResponse>);
}
export default DnsMappingResponse;