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

com.touwolf.mailchimp.model.batch.BatchRequest Maven / Gradle / Ivy

package com.touwolf.mailchimp.model.batch;

public class BatchRequest {
    private BatchMethodRequest method;

    private String path;

    private String params;

    private String body;

    private String operationId;

    /**
     * The HTTP method to use for the operation.
     * Possible Values:
     * 

* GET * POST * PUT * PATCH */ public BatchMethodRequest getMethod() { return method; } public void setMethod(BatchMethodRequest method) { this.method = method; } /** * The relative path to use for the operation. */ public String getPath() { return path; } public void setPath(String path) { this.path = path; } /** * Any URL params to use, only applies to GET operations. */ public String getParams() { return params; } public void setParams(String params) { this.params = params; } /** * A string containing the JSON body to use with the request. */ public String getBody() { return body; } public void setBody(String body) { this.body = body; } /** * An optional client-supplied id returned with the operation results. */ public String getOperationId() { return operationId; } public void setOperationId(String operationId) { this.operationId = operationId; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy