com.binfast.adpter.openapi.model.request.CurlRequest Maven / Gradle / Ivy
/*
* smart-doc https://github.com/shalousun/smart-doc
*
* Copyright (C) 2018-2022 smart-doc
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.binfast.adpter.openapi.model.request;
import com.binfast.adpter.openapi.model.ApiReqParam;
import com.binfast.adpter.openapi.model.FormData;
import java.util.List;
/**
* @author yu 2020/12/21.
*/
public class CurlRequest {
private String type;
private List reqHeaders;
private List fileFormDataList;
private String url;
private String body;
private String contentType;
public static CurlRequest builder() {
return new CurlRequest();
}
public List getFileFormDataList() {
return fileFormDataList;
}
public CurlRequest setFileFormDataList(List fileFormDataList) {
this.fileFormDataList = fileFormDataList;
return this;
}
public String getType() {
return type;
}
public CurlRequest setType(String type) {
this.type = type;
return this;
}
public List getReqHeaders() {
return reqHeaders;
}
public CurlRequest setReqHeaders(List reqHeaders) {
this.reqHeaders = reqHeaders;
return this;
}
public String getUrl() {
return url;
}
public CurlRequest setUrl(String url) {
this.url = url;
return this;
}
public String getBody() {
return body;
}
public CurlRequest setBody(String body) {
this.body = body;
return this;
}
public String getContentType() {
return contentType;
}
public CurlRequest setContentType(String contentType) {
this.contentType = contentType;
return this;
}
}