가입 신청 조회
길드 가입 신청 정보를 조회합니다.
호출 정보
public void PersonalSearch (string tableCode, PlayNANOODelegate callback) {}
호출 상세 정보
파라미터 | 설명 | 타입 |
---|---|---|
tableCode | 테이블 코드 | string |
callback | 통신 결과 | PlayNANOODelegate |
소스 코드
using PlayNANOO;
public class PlayNANOOExample : MonoBehaviour
{
Plugin plugin;
void Awake()
{
plugin = Plugin.GetInstance();
plugin.Guild.PersonalSearch("tableCode", (status, error, jsonString, values) =>
{
if (status.Equals(Configure.PN_API_STATE_SUCCESS))
{
foreach (Dictionary<string, object> value in (ArrayList)values["Items"])
{
Debug.Log(value["TableCode"]);
Debug.Log(value["Uid"]);
Debug.Log(value["Name"]);
Debug.Log(value["Country"]);
Debug.Log(value["Point"]);
Debug.Log(value["MemberCount"]);
Debug.Log(value["MemberLimit"]);
Debug.Log(value["AutoJoin"]);
Debug.Log(value["ExtraData"]);
Debug.Log(value["InDate"]);
Debug.Log(value["RequestInDate"]);
}
}
else
{
Debug.Log("Fail");
}
});
}
}
통신 결과
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
{
"Items" : [
{
"TableCode" : "string",
"Uid" : "string",
"Name" : "string",
"Country" : "string",
"Point" : "integer",
"MemberCount" : "integer",
"MemberLimit" : "integer",
"AutoAuth" : "string",
"InDate" : "string",
"RequestInDate" : "string"
}
]
}
통신 결과 상세 정보
데이터키 | 설명 | 타입 |
---|---|---|
TableCode | 테이블 코드 | string |
Uid | 길드 식별 고유 코드 | string |
Name | 길드 이름 | string |
Country | 길드 국가 코드 | string |
Point | 길드 포인트 | integer |
MemberCount | 회원 수 | integer |
MemberLimit | 최대 가입 가능 회원 수 | integer |
AutoJoin | 자동 회원 가입 가능 여부 | string |
ExtraData | 추가 데이터 | string |
InDate | 길드 생성일자 | string |
RequestInDate | 길드 가입 신청 일자 | string |