/** * @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); } export default StreamsSigningKeyResponse;