| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | namespace Azure.Messaging.EventGrid.SystemEvents |
| | 9 | | { |
| | 10 | | /// <summary> To complete an event subscription validation handshake, a subscriber can use either the validationCode |
| | 11 | | public partial class SubscriptionValidationResponse |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of SubscriptionValidationResponse. </summary> |
| 0 | 14 | | internal SubscriptionValidationResponse() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of SubscriptionValidationResponse. </summary> |
| | 19 | | /// <param name="validationResponse"> The validation response sent by the subscriber to Azure Event Grid to comp |
| 0 | 20 | | internal SubscriptionValidationResponse(string validationResponse) |
| | 21 | | { |
| 0 | 22 | | ValidationResponse = validationResponse; |
| 0 | 23 | | } |
| | 24 | |
|
| | 25 | | /// <summary> The validation response sent by the subscriber to Azure Event Grid to complete the validation of a |
| 0 | 26 | | public string ValidationResponse { get; } |
| | 27 | | } |
| | 28 | | } |