GetGuildIndateByGuildNameV3
public BackendReturnObject GetGuildIndateByGuildNameV3(string guildName);
파라미터
Value | Type | Description |
---|---|---|
guildName | string | 찾고자 하는 길드의 이름 |
설명
길드명을 통해 해당 길드의 indate를 조회합니다.
Example
동기
BackendReturnObject bro = Backend.Guild.GetGuildIndateByGuildNameV3("guildName");
string guildIndate = bro.GetReturnValuetoJSON()["guildInDate"]["S"].ToString();
비동기
Backend.Guild.GetGuildIndateByGuildNameV3("guildName", (callback) =>
{
string guildIndate = callback.GetReturnValuetoJSON()["guildInDate"]["S"].ToString();
//이후 처리
});
SendQueue
SendQueue.Enqueue(Backend.Guild.GetGuildIndateByGuildNameV3, "guildName", (callback) =>
{
string guildIndate = callback.GetReturnValuetoJSON()["guildInDate"]["S"].ToString();
//이후 처리
});
ReturnCase
Success cases
조회에 성공한 경우
statusCode : 200
message : Success
returnValue : GetReturnValuetoJSON 참조
Error cases
존재하지 않는 길드명일 경우
statusCode : 404
errorCode : NotFoundException
message : guild not found, guild을(를) 찾을 수 없습니다
길드명을 입력하지 않은 경우
statusCode : 404
errorCode : NotFoundException
message : Resource not found, Resource을(를) 찾을 수 없습니다
GetReturnValuetoJSON
{
guildInDate: {
S: "2019-03-04T00:29:41.084Z";
}
}