onAuthV4Maintenance

abstract fun onAuthV4Maintenance(result: ResultAPI, maintenanceInfo: ArrayList<AuthV4.AuthV4MaintenanceInfo>?)

AuthV4 서버 점검 조회 결과 통지
AuthV4 Sever maintenance check request result callback


korean

Configuration 에 설정한 ServerId 로 점검상태 여부를 체크한다.
요청시 isShow 가 true 였을 경우 점검 팝업이 노출되고 닫힌 이후에 불리게 된다.

result : 서버에 조회 요청이 성공하면 SUCCESS 가 된다.
SUCCESS 이지만 점검 공지 내용이 없다면 maintenanceInfo 는 비어있게 된다.
maintenanceInfo : 점검 공지 팝업에 노출되는 동작에 대한 정보 이다.
요청시 isShow 를 false 로 주었다면 이 정보를 가지고 직접 UI 를 구성하여 노출하여야 한다.


english

Check whether the server is in the server maintenance with the ServerId set in Configuration.
If isShow is true on request, the maintenance popup is exposed and this callback will be called after the popup is closed.

result : If the query to the server is successful, it will be SUCCESS.
If it is SUCCESS but there is no notice of maintenance, maintenanceInfo will be empty.
maintenanceInfo : Maintenance popup information about the action that is exposed to the popup.
If isShow is set to false on request, you must make and expose the UI directly by your self with this information.