UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

27 lines (26 loc) 706 B
/** * @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;