UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

22 lines (21 loc) 590 B
import BitmovinResource from './BitmovinResource'; /** * @export * @class OciAccount */ export declare class OciAccount extends BitmovinResource { /** * The OCID of the tenancy where you intend to run encoding VMs. (required) * @type {string} * @memberof OciAccount */ tenancyId?: string; /** * The OCID of the compartment within the tenancy where you intend to run encoding VMs. (required) * @type {string} * @memberof OciAccount */ compartmentId?: string; constructor(obj?: Partial<OciAccount>); } export default OciAccount;