com.aliyun.ccp.ossclient.models.DefaultChangePasswordRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ccp-oss-client Show documentation
Show all versions of ccp-oss-client Show documentation
Aliyun CCP oss SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ccp.ossclient.models;
import com.aliyun.tea.*;
public class DefaultChangePasswordRequest extends TeaModel {
@NameInMap("app_id")
@Validation(required = true)
public String appId;
@NameInMap("new_password")
@Validation(required = true)
public String newPassword;
@NameInMap("phone_number")
@Validation(required = true)
public String phoneNumber;
@NameInMap("sms_code")
@Validation(required = true)
public String smsCode;
@NameInMap("sms_code_id")
@Validation(required = true)
public String smsCodeId;
public static DefaultChangePasswordRequest build(java.util.Map map) throws Exception {
DefaultChangePasswordRequest self = new DefaultChangePasswordRequest();
return TeaModel.build(map, self);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy