void UnityUICloudGoodsLogin_ResentAuthentication(CloudGoods.SDK.Models.StatusMessageResponse obj) { ResendAuthenticationPanel.SetActive(false); StatusPanel.SetActive(true); StatusText.text = "Authentication Email has been Sent."; }
void OnSentPassword(StatusMessageResponse sentPasswordResponse) { if(PasswordResetSent != null) PasswordResetSent(sentPasswordResponse); }
void OnResentAuthenticationEmail(StatusMessageResponse authenticationResponse) { if(ResentAuthentication != null) ResentAuthentication(authenticationResponse); }
void UnityUICloudGoodsLogin_PasswordResetSent(CloudGoods.SDK.Models.StatusMessageResponse obj) { StatusPanel.SetActive(true); StatusText.text = obj.message; }