본문으로 건너뛰기
버전: 5.11.5

SendQuestion

public BackendReturnObject SendQuestion(QuestionType questionType, string title, string content);

파라미터

ValueTypeDescription
questionTypeQuestionType문의 유형
titlestring문의 제목
contentstring문의 내용

QuestionType

TypeDescription
QuestionType.Account계정
QuestionType.Payment결제
QuestionType.Restore복구
QuestionType.GameQuestion게임문의
QuestionType.Report신고
QuestionType.SetupOrExecute설치/진행
QuestionType.Bug버그
QuestionType.Event이벤트
QuestionType.Suggestions건의사항
QuestionType.Etc기타

설명

문의를 발송합니다. 문의 유형은 enum QuestionType으로 지정할 수 있습니다.

사전 업로드 기능은 현재 제공하고 있지 않습니다.

Example

동기

Backend.Question.SendQuestion(QuestionType.Account, "제목", "내용");

비동기

Backend.Question.SendQuestion(QuestionType.Account, "제목", "내용", (callback) => {

});

SendQueue

SendQueue.Enqueue(Backend.Question.SendQuestion, QuestionType.Account, "제목", "내용", (callback) => {

});

Return Cases

Success Cases

statusCode : 204
message : Success