com.aliyun.ccp.ossclient.models.UpdateAppRequest 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 UpdateAppRequest extends TeaModel {
@NameInMap("app_id")
@Validation(required = true)
public String appId;
@NameInMap("app_name")
@Validation(required = true, pattern = "[0-9a-zA-Z]+")
public String appName;
@NameInMap("description")
public String description;
@NameInMap("is_third_party")
@Validation(required = true)
public boolean isThirdParty;
@NameInMap("logo")
@Validation(required = true)
public String logo;
@NameInMap("redirect_uri")
@Validation(required = true)
public String redirectUri;
@NameInMap("scope")
@Validation(required = true)
public String[] scope;
@NameInMap("type")
@Validation(required = true)
public String type;
public static UpdateAppRequest build(java.util.Map map) throws Exception {
UpdateAppRequest self = new UpdateAppRequest();
return TeaModel.build(map, self);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy