@openzeppelin/relayer-sdk
Version:
OpenZeppelin Relayer SDK
34 lines (33 loc) • 1.1 kB
TypeScript
/**
* OpenZeppelin Relayer API
* OpenZeppelin Relayer API
*
* The version of the OpenAPI document: 1.3.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { GoogleCloudKmsSignerKeyRequestConfig } from './google-cloud-kms-signer-key-request-config';
import type { GoogleCloudKmsSignerServiceAccountRequestConfig } from './google-cloud-kms-signer-service-account-request-config';
/**
* Google Cloud KMS signer configuration for API requests
* @export
* @interface GoogleCloudKmsSignerRequestConfig
*/
export interface GoogleCloudKmsSignerRequestConfig {
[key: string]: any;
/**
*
* @type {GoogleCloudKmsSignerKeyRequestConfig}
* @memberof GoogleCloudKmsSignerRequestConfig
*/
'key': GoogleCloudKmsSignerKeyRequestConfig;
/**
*
* @type {GoogleCloudKmsSignerServiceAccountRequestConfig}
* @memberof GoogleCloudKmsSignerRequestConfig
*/
'service_account': GoogleCloudKmsSignerServiceAccountRequestConfig;
}