@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
26 lines (25 loc) • 607 B
TypeScript
/**
* @export
* @class StreamsSigningKeyResponse
*/
export declare class StreamsSigningKeyResponse {
/**
* base64-encoded PEM file of the private key
* @type {string}
* @memberof StreamsSigningKeyResponse
*/
privateKey?: string;
/**
* The unique identifier of the key
* @type {string}
* @memberof StreamsSigningKeyResponse
*/
keyId?: string;
/**
* @type {string}
* @memberof StreamsSigningKeyResponse
*/
message?: string;
constructor(obj?: Partial<StreamsSigningKeyResponse>);
}
export default StreamsSigningKeyResponse;