{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.onEmailOtpSendListener", "title": "microsoft.graph.onEmailOtpSendListener", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.authenticationEventListener" }, { "title": "onEmailOtpSendListener", "required": [ "@odata.type" ], "type": "object", "properties": { "handler": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.onOtpSendHandler" }, { "type": "object", "nullable": true } ], "description": "Used to configure what to invoke if the onEmailOTPSend event resolves to this listener. This base class serves as a generic OTP event handler used for both email and SMS OTP messages." }, "@odata.type": { "type": "string", "default": "#microsoft.graph.onEmailOtpSendListener" } } } ], "x-ms-discriminator-value": "#microsoft.graph.onEmailOtpSendListener" }