@openzeppelin/relayer-sdk
Version:
OpenZeppelin Relayer SDK
44 lines (43 loc) • 1.02 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 creating a new notification
* @export
* @interface NotificationCreateRequest
*/
export interface NotificationCreateRequest {
/**
*
* @type {string}
* @memberof NotificationCreateRequest
*/
'id'?: string;
/**
* Optional signing key for securing webhook notifications
* @type {string}
* @memberof NotificationCreateRequest
*/
'signing_key'?: string;
/**
*
* @type {NotificationType}
* @memberof NotificationCreateRequest
*/
'type'?: NotificationType;
/**
*
* @type {string}
* @memberof NotificationCreateRequest
*/
'url': string;
}