| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System; |
| | 9 | |
|
| | 10 | | namespace Azure.Messaging.EventGrid.SystemEvents |
| | 11 | | { |
| | 12 | | /// <summary> Schema of the Data property of an EventGridEvent for a Microsoft.SignalRService.ClientConnectionConnec |
| | 13 | | public partial class SignalRServiceClientConnectionConnectedEventData |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of SignalRServiceClientConnectionConnectedEventData. </summary> |
| 0 | 16 | | internal SignalRServiceClientConnectionConnectedEventData() |
| | 17 | | { |
| 0 | 18 | | } |
| | 19 | |
|
| | 20 | | /// <summary> Initializes a new instance of SignalRServiceClientConnectionConnectedEventData. </summary> |
| | 21 | | /// <param name="timestamp"> The time at which the event occurred. </param> |
| | 22 | | /// <param name="hubName"> The hub of connected client connection. </param> |
| | 23 | | /// <param name="connectionId"> The connection Id of connected client connection. </param> |
| | 24 | | /// <param name="userId"> The user Id of connected client connection. </param> |
| 0 | 25 | | internal SignalRServiceClientConnectionConnectedEventData(DateTimeOffset? timestamp, string hubName, string conn |
| | 26 | | { |
| 0 | 27 | | Timestamp = timestamp; |
| 0 | 28 | | HubName = hubName; |
| 0 | 29 | | ConnectionId = connectionId; |
| 0 | 30 | | UserId = userId; |
| 0 | 31 | | } |
| | 32 | |
|
| | 33 | | /// <summary> The time at which the event occurred. </summary> |
| 0 | 34 | | public DateTimeOffset? Timestamp { get; } |
| | 35 | | /// <summary> The hub of connected client connection. </summary> |
| 0 | 36 | | public string HubName { get; } |
| | 37 | | /// <summary> The connection Id of connected client connection. </summary> |
| 0 | 38 | | public string ConnectionId { get; } |
| | 39 | | /// <summary> The user Id of connected client connection. </summary> |
| 0 | 40 | | public string UserId { get; } |
| | 41 | | } |
| | 42 | | } |