@openzeppelin/relayer-sdk
Version:
OpenZeppelin Relayer SDK
38 lines (37 loc) • 1.07 kB
TypeScript
/**
* 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 { NotificationType } from './notification-type';
/**
* Request structure for updating an existing notification
* @export
* @interface NotificationUpdateRequest
*/
export interface NotificationUpdateRequest {
/**
* Optional signing key for securing webhook notifications. - None: don\'t change the existing signing key - Some(\"\"): remove the signing key - Some(\"key\"): set the signing key to the provided value
* @type {string}
* @memberof NotificationUpdateRequest
*/
'signing_key'?: string | null;
/**
*
* @type {NotificationType}
* @memberof NotificationUpdateRequest
*/
'type'?: NotificationType;
/**
*
* @type {string}
* @memberof NotificationUpdateRequest
*/
'url'?: string;
}