INNER CODE UNIT · C#
GraphQLWebSocketResponse
graphql-dotnet/graphql-client · src/GraphQL.Client.Abstractions.Websocket/GraphQLWebSocketResponse.cs:6
public class GraphQLWebSocketResponse : IEquatable<GraphQLWebSocketResponse>
{
/// <summary>
/// The Identifier of the Response
/// </summary>
public string Id { get; set; }
/// <summary>
/// The Type of the Response
/// </summary>
public string Type { get; set; }
/// <inheritdoc />
public override bool Equals(object obj) => Equals(obj as GraphQLWebSocketResponse);
/// <inheritdoc />
public bool Equals(GraphQLWebSocketResponse other)
{