/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * A special webhook message that is sent to verify a webhook * @export * @interface WebhookVerificationMessage */ export interface WebhookVerificationMessage { /** * * @type {string} * @memberof WebhookVerificationMessage */ concreteType: WebhookVerificationMessageConcreteTypeEnum; /** * Unique message identifier. * @type {string} * @memberof WebhookVerificationMessage */ messageId: string; /** * The timestamp when the event occurred, in ISO 8601 format. * @type {string} * @memberof WebhookVerificationMessage */ eventTimestamp: string; /** * The verification code that shall be used to verify the webhook. Expires after 10 minutes. * @type {string} * @memberof WebhookVerificationMessage */ verificationCode?: string; } /** * @export */ export declare const WebhookVerificationMessageConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_webhook_WebhookVerificationMessage: "org.sagebionetworks.repo.model.webhook.WebhookVerificationMessage"; }; export type WebhookVerificationMessageConcreteTypeEnum = typeof WebhookVerificationMessageConcreteTypeEnum[keyof typeof WebhookVerificationMessageConcreteTypeEnum]; /** * Check if a given object implements the WebhookVerificationMessage interface. */ export declare function instanceOfWebhookVerificationMessage(value: object): value is WebhookVerificationMessage; export declare function WebhookVerificationMessageFromJSON(json: any): WebhookVerificationMessage; export declare function WebhookVerificationMessageFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookVerificationMessage; export declare function WebhookVerificationMessageToJSON(json: any): WebhookVerificationMessage; export declare function WebhookVerificationMessageToJSONTyped(value?: WebhookVerificationMessage | null, ignoreDiscriminator?: boolean): any;