
com.tencentcloudapi.cpdp.v20190820.models.UploadTaxListRequest Maven / Gradle / Ivy
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.tencentcloudapi.cpdp.v20190820.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class UploadTaxListRequest extends AbstractModel{
/**
* 平台渠道
*/
@SerializedName("Channel")
@Expose
private Long Channel;
/**
* 起始月份,YYYY-MM
*/
@SerializedName("BeginMonth")
@Expose
private String BeginMonth;
/**
* 结束月份。如果只上传一个月,结束月份等于起始月份
*/
@SerializedName("EndMonth")
@Expose
private String EndMonth;
/**
* 完税列表下载地址
*/
@SerializedName("FileUrl")
@Expose
private String FileUrl;
/**
* Get 平台渠道
* @return Channel 平台渠道
*/
public Long getChannel() {
return this.Channel;
}
/**
* Set 平台渠道
* @param Channel 平台渠道
*/
public void setChannel(Long Channel) {
this.Channel = Channel;
}
/**
* Get 起始月份,YYYY-MM
* @return BeginMonth 起始月份,YYYY-MM
*/
public String getBeginMonth() {
return this.BeginMonth;
}
/**
* Set 起始月份,YYYY-MM
* @param BeginMonth 起始月份,YYYY-MM
*/
public void setBeginMonth(String BeginMonth) {
this.BeginMonth = BeginMonth;
}
/**
* Get 结束月份。如果只上传一个月,结束月份等于起始月份
* @return EndMonth 结束月份。如果只上传一个月,结束月份等于起始月份
*/
public String getEndMonth() {
return this.EndMonth;
}
/**
* Set 结束月份。如果只上传一个月,结束月份等于起始月份
* @param EndMonth 结束月份。如果只上传一个月,结束月份等于起始月份
*/
public void setEndMonth(String EndMonth) {
this.EndMonth = EndMonth;
}
/**
* Get 完税列表下载地址
* @return FileUrl 完税列表下载地址
*/
public String getFileUrl() {
return this.FileUrl;
}
/**
* Set 完税列表下载地址
* @param FileUrl 完税列表下载地址
*/
public void setFileUrl(String FileUrl) {
this.FileUrl = FileUrl;
}
public UploadTaxListRequest() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public UploadTaxListRequest(UploadTaxListRequest source) {
if (source.Channel != null) {
this.Channel = new Long(source.Channel);
}
if (source.BeginMonth != null) {
this.BeginMonth = new String(source.BeginMonth);
}
if (source.EndMonth != null) {
this.EndMonth = new String(source.EndMonth);
}
if (source.FileUrl != null) {
this.FileUrl = new String(source.FileUrl);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Channel", this.Channel);
this.setParamSimple(map, prefix + "BeginMonth", this.BeginMonth);
this.setParamSimple(map, prefix + "EndMonth", this.EndMonth);
this.setParamSimple(map, prefix + "FileUrl", this.FileUrl);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy