aha
This commit is contained in:
161
Assets/Mirror/Hosting/Edgegap/Models/SDK/SessionGet.cs
Normal file
161
Assets/Mirror/Hosting/Edgegap/Models/SDK/SessionGet.cs
Normal file
@ -0,0 +1,161 @@
|
||||
using System;
|
||||
using System.Text;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Runtime.Serialization;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace IO.Swagger.Model {
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[DataContract]
|
||||
public class SessionGet {
|
||||
/// <summary>
|
||||
/// Unique UUID
|
||||
/// </summary>
|
||||
/// <value>Unique UUID</value>
|
||||
[DataMember(Name="session_id", EmitDefaultValue=false)]
|
||||
[JsonProperty(PropertyName = "session_id")]
|
||||
public string SessionId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Custom ID if Available
|
||||
/// </summary>
|
||||
/// <value>Custom ID if Available</value>
|
||||
[DataMember(Name="custom_id", EmitDefaultValue=false)]
|
||||
[JsonProperty(PropertyName = "custom_id")]
|
||||
public string CustomId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Current status of the session
|
||||
/// </summary>
|
||||
/// <value>Current status of the session</value>
|
||||
[DataMember(Name="status", EmitDefaultValue=false)]
|
||||
[JsonProperty(PropertyName = "status")]
|
||||
public string Status { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// If the session is linked to a ready deployment
|
||||
/// </summary>
|
||||
/// <value>If the session is linked to a ready deployment</value>
|
||||
[DataMember(Name="ready", EmitDefaultValue=false)]
|
||||
[JsonProperty(PropertyName = "ready")]
|
||||
public bool? Ready { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// If the session is linked to a deployment
|
||||
/// </summary>
|
||||
/// <value>If the session is linked to a deployment</value>
|
||||
[DataMember(Name="linked", EmitDefaultValue=false)]
|
||||
[JsonProperty(PropertyName = "linked")]
|
||||
public bool? Linked { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Type of session created
|
||||
/// </summary>
|
||||
/// <value>Type of session created</value>
|
||||
[DataMember(Name="kind", EmitDefaultValue=false)]
|
||||
[JsonProperty(PropertyName = "kind")]
|
||||
public string Kind { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Count of user this session currently have
|
||||
/// </summary>
|
||||
/// <value>Count of user this session currently have</value>
|
||||
[DataMember(Name="user_count", EmitDefaultValue=false)]
|
||||
[JsonProperty(PropertyName = "user_count")]
|
||||
public int? UserCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// App version linked to the session
|
||||
/// </summary>
|
||||
/// <value>App version linked to the session</value>
|
||||
[DataMember(Name="app_id", EmitDefaultValue=false)]
|
||||
[JsonProperty(PropertyName = "app_id")]
|
||||
public int? AppId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Session created at
|
||||
/// </summary>
|
||||
/// <value>Session created at</value>
|
||||
[DataMember(Name="create_time", EmitDefaultValue=false)]
|
||||
[JsonProperty(PropertyName = "create_time")]
|
||||
public string CreateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Elapsed time
|
||||
/// </summary>
|
||||
/// <value>Elapsed time</value>
|
||||
[DataMember(Name="elapsed", EmitDefaultValue=false)]
|
||||
[JsonProperty(PropertyName = "elapsed")]
|
||||
public int? Elapsed { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Error Detail
|
||||
/// </summary>
|
||||
/// <value>Error Detail</value>
|
||||
[DataMember(Name="error", EmitDefaultValue=false)]
|
||||
[JsonProperty(PropertyName = "error")]
|
||||
public string Error { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Users in the session
|
||||
/// </summary>
|
||||
/// <value>Users in the session</value>
|
||||
[DataMember(Name="session_users", EmitDefaultValue=false)]
|
||||
[JsonProperty(PropertyName = "session_users")]
|
||||
public List<SessionUser> SessionUsers { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// IPS in the session
|
||||
/// </summary>
|
||||
/// <value>IPS in the session</value>
|
||||
[DataMember(Name="session_ips", EmitDefaultValue=false)]
|
||||
[JsonProperty(PropertyName = "session_ips")]
|
||||
public List<SessionUser> SessionIps { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets Deployment
|
||||
/// </summary>
|
||||
[DataMember(Name="deployment", EmitDefaultValue=false)]
|
||||
[JsonProperty(PropertyName = "deployment")]
|
||||
public Deployment Deployment { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Get the string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>String presentation of the object</returns>
|
||||
public override string ToString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.Append("class SessionGet {\n");
|
||||
sb.Append(" SessionId: ").Append(SessionId).Append("\n");
|
||||
sb.Append(" CustomId: ").Append(CustomId).Append("\n");
|
||||
sb.Append(" Status: ").Append(Status).Append("\n");
|
||||
sb.Append(" Ready: ").Append(Ready).Append("\n");
|
||||
sb.Append(" Linked: ").Append(Linked).Append("\n");
|
||||
sb.Append(" Kind: ").Append(Kind).Append("\n");
|
||||
sb.Append(" UserCount: ").Append(UserCount).Append("\n");
|
||||
sb.Append(" AppId: ").Append(AppId).Append("\n");
|
||||
sb.Append(" CreateTime: ").Append(CreateTime).Append("\n");
|
||||
sb.Append(" Elapsed: ").Append(Elapsed).Append("\n");
|
||||
sb.Append(" Error: ").Append(Error).Append("\n");
|
||||
sb.Append(" SessionUsers: ").Append(SessionUsers).Append("\n");
|
||||
sb.Append(" SessionIps: ").Append(SessionIps).Append("\n");
|
||||
sb.Append(" Deployment: ").Append(Deployment).Append("\n");
|
||||
sb.Append("}\n");
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get the JSON string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>JSON string presentation of the object</returns>
|
||||
public string ToJson() {
|
||||
return JsonConvert.SerializeObject(this, Formatting.Indented);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user