All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.taobao.api.internal.dto.RequestDTO Maven / Gradle / Ivy

The newest version!
package com.taobao.api.internal.dto;

import java.io.Serializable;
import java.util.Map;

/**
 * API请求参数包装类。
 */
public class RequestDTO implements Serializable {

	private static final long serialVersionUID = -6013997108307516208L;

	private String apiMethodName;

    private String contentType;

    private String apiCallType;

    private String format;

    private String apiVersion;

    private Map textParams;

    private Map headerMap;

    private Long timestamp;

    private String targetAppKey;

    private String body;

    private Object requestBase;

    public String getApiMethodName() {
        return apiMethodName;
    }

    public void setApiMethodName(String apiMethodName) {
        this.apiMethodName = apiMethodName;
    }

    public String getContentType() {
        return contentType;
    }

    public void setContentType(String contentType) {
        this.contentType = contentType;
    }

    public Map getTextParams() {
        return textParams;
    }

    public void setTextParams(Map textParams) {
        this.textParams = textParams;
    }

    public Map getHeaderMap() {
        return headerMap;
    }

    public void setHeaderMap(Map headerMap) {
        this.headerMap = headerMap;
    }

    public Long getTimestamp() {
        return timestamp;
    }

    public void setTimestamp(Long timestamp) {
        this.timestamp = timestamp;
    }

    public String getTargetAppKey() {
        return targetAppKey;
    }

    public void setTargetAppKey(String targetAppKey) {
        this.targetAppKey = targetAppKey;
    }

    public String getBody() {
        return body;
    }

    public void setBody(String body) {
        this.body = body;
    }

    public Object getRequestBase() {
        return requestBase;
    }

    public void setRequestBase(Object requestBase) {
        this.requestBase = requestBase;
    }

    public String getApiVersion() {
        return apiVersion;
    }

    public void setApiVersion(String apiVersion) {
        this.apiVersion = apiVersion;
    }

    public String getFormat() {
        return format;
    }

    public void setFormat(String format) {
        this.format = format;
    }

    public String getApiCallType() {
        return apiCallType;
    }

    public void setApiCallType(String apiCallType) {
        this.apiCallType = apiCallType;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy