Repository URL to install this package:
Version:
2025.5.6 ▾
|
/*
* Copyright 2016 Game Server Services, Inc. or its affiliates. All Rights
* Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
#pragma warning disable CS0618 // Obsolete with a message
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using Gs2.Core.Model;
using Gs2.Util.LitJson;
#if UNITY_2017_1_OR_NEWER
using UnityEngine.Scripting;
#endif
namespace Gs2.Gs2Guild.Model
{
#if UNITY_2017_1_OR_NEWER
[Preserve]
#endif
public partial class ReceiveMemberRequest : IComparable
{
public string UserId { set; get; }
public string TargetGuildName { set; get; }
public string Metadata { set; get; }
public ReceiveMemberRequest WithUserId(string userId) {
this.UserId = userId;
return this;
}
public ReceiveMemberRequest WithTargetGuildName(string targetGuildName) {
this.TargetGuildName = targetGuildName;
return this;
}
public ReceiveMemberRequest WithMetadata(string metadata) {
this.Metadata = metadata;
return this;
}
#if UNITY_2017_1_OR_NEWER
[Preserve]
#endif
public static ReceiveMemberRequest FromJson(JsonData data)
{
if (data == null) {
return null;
}
return new ReceiveMemberRequest()
.WithUserId(!data.Keys.Contains("userId") || data["userId"] == null ? null : data["userId"].ToString())
.WithTargetGuildName(!data.Keys.Contains("targetGuildName") || data["targetGuildName"] == null ? null : data["targetGuildName"].ToString())
.WithMetadata(!data.Keys.Contains("metadata") || data["metadata"] == null ? null : data["metadata"].ToString());
}
public JsonData ToJson()
{
return new JsonData {
["userId"] = UserId,
["targetGuildName"] = TargetGuildName,
["metadata"] = Metadata,
};
}
public void WriteJson(JsonWriter writer)
{
writer.WriteObjectStart();
if (UserId != null) {
writer.WritePropertyName("userId");
writer.Write(UserId.ToString());
}
if (TargetGuildName != null) {
writer.WritePropertyName("targetGuildName");
writer.Write(TargetGuildName.ToString());
}
if (Metadata != null) {
writer.WritePropertyName("metadata");
writer.Write(Metadata.ToString());
}
writer.WriteObjectEnd();
}
public int CompareTo(object obj)
{
var other = obj as ReceiveMemberRequest;
var diff = 0;
if (UserId == null && UserId == other.UserId)
{
// null and null
}
else
{
diff += UserId.CompareTo(other.UserId);
}
if (TargetGuildName == null && TargetGuildName == other.TargetGuildName)
{
// null and null
}
else
{
diff += TargetGuildName.CompareTo(other.TargetGuildName);
}
if (Metadata == null && Metadata == other.Metadata)
{
// null and null
}
else
{
diff += Metadata.CompareTo(other.Metadata);
}
return diff;
}
public void Validate() {
{
if (UserId.Length > 128) {
throw new Gs2.Core.Exception.BadRequestException(new [] {
new RequestError("receiveMemberRequest", "guild.receiveMemberRequest.userId.error.tooLong"),
});
}
}
{
if (TargetGuildName.Length > 128) {
throw new Gs2.Core.Exception.BadRequestException(new [] {
new RequestError("receiveMemberRequest", "guild.receiveMemberRequest.targetGuildName.error.tooLong"),
});
}
}
{
if (Metadata.Length > 512) {
throw new Gs2.Core.Exception.BadRequestException(new [] {
new RequestError("receiveMemberRequest", "guild.receiveMemberRequest.metadata.error.tooLong"),
});
}
}
}
public object Clone() {
return new ReceiveMemberRequest {
UserId = UserId,
TargetGuildName = TargetGuildName,
Metadata = Metadata,
};
}
}
}