您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
42 行
1.6 KiB
42 行
1.6 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEngine.Scripting;
|
|
using System.Runtime.Serialization;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
using Unity.Services.Relay.Http;
|
|
|
|
|
|
|
|
namespace Unity.Services.Relay.Models
|
|
{
|
|
/// <summary>
|
|
/// JoinCodeData model
|
|
/// <param name="joinCode">The join code is used to lookup the connection data for the player responsible for creating it. It is case-insensitive. The connection data is returned to the caller and can be used in the request to the \"join\" endpoint to join a relay server.</param>
|
|
/// </summary>
|
|
|
|
[Preserve]
|
|
[DataContract(Name = "JoinCodeData")]
|
|
public class JoinCodeData
|
|
{
|
|
/// <summary>
|
|
/// Creates an instance of JoinCodeData.
|
|
/// </summary>
|
|
/// <param name="joinCode">The join code is used to lookup the connection data for the player responsible for creating it. It is case-insensitive. The connection data is returned to the caller and can be used in the request to the \"join\" endpoint to join a relay server.</param>
|
|
[Preserve]
|
|
public JoinCodeData(string joinCode)
|
|
{
|
|
JoinCode = joinCode;
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// The join code is used to lookup the connection data for the player responsible for creating it. It is case-insensitive. The connection data is returned to the caller and can be used in the request to the \"join\" endpoint to join a relay server.
|
|
/// </summary>
|
|
[Preserve]
|
|
[DataMember(Name = "joinCode", IsRequired = true, EmitDefaultValue = true)]
|
|
public string JoinCode{ get; }
|
|
|
|
}
|
|
}
|
|
|