com.aliyuncs.btripopen.model.v20220517.TakeAccessTokenRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-btripopen Show documentation
Show all versions of aliyun-java-sdk-btripopen Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
The newest version!
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.btripopen.model.v20220517;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class TakeAccessTokenRequest extends RoaAcsRequest {
private String app_key;
private String app_secret;
public TakeAccessTokenRequest() {
super("btripOpen", "2022-05-17", "TakeAccessToken");
setProtocol(ProtocolType.HTTPS);
setUriPattern("/btrip/open/access-token/take/[app_key]");
setMethod(MethodType.GET);
}
public String getApp_key() {
return this.app_key;
}
public void setApp_key(String app_key) {
this.app_key = app_key;
if(app_key != null){
putPathParameter("app_key", app_key);
}
}
public String getApp_secret() {
return this.app_secret;
}
public void setApp_secret(String app_secret) {
this.app_secret = app_secret;
if(app_secret != null){
putQueryParameter("app_secret", app_secret);
}
}
@Override
public Class getResponseClass() {
return TakeAccessTokenResponse.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy