UNPKG

@openzeppelin/relayer-sdk

Version:
39 lines (38 loc) 1.02 kB
/** * OpenZeppelin Relayer API * OpenZeppelin Relayer API * * The version of the OpenAPI document: 1.0.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 { SignerConfigResponse } from './signer-config-response'; import type { SignerType } from './signer-type'; /** * * @export * @interface ApiResponseSignerResponseData */ export interface ApiResponseSignerResponseData { /** * Non-secret configuration details * @type {SignerConfigResponse} * @memberof ApiResponseSignerResponseData */ 'config': SignerConfigResponse; /** * The unique identifier of the signer * @type {string} * @memberof ApiResponseSignerResponseData */ 'id': string; /** * The type of signer (local, aws_kms, google_cloud_kms, vault, etc.) * @type {SignerType} * @memberof ApiResponseSignerResponseData */ 'type': SignerType; }