
com.cybozu.kintone.client.model.bulkrequest.BulkRequestItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kintone-sdk Show documentation
Show all versions of kintone-sdk Show documentation
kintone Java SDK for REST API
The newest version!
/**
* MIT License
*
* Copyright (c) 2018 Cybozu
* https://github.com/kintone/kintone-java-sdk/blob/master/LICENSE
*/
package com.cybozu.kintone.client.model.bulkrequest;
public class BulkRequestItem {
private String method;
private String api;
private Object payload;
/**
* Constructor
* @param method method of the BulkRequestItem
* @param api api of the BulkRequestItem
* @param payload payload of the BulkRequestItem
*/
public BulkRequestItem(String method, String api, Object payload) {
this.method = method;
this.api = api;
this.payload = payload;
}
/**
* Get api
* @return api
*/
public String getApi() {
return this.api;
}
/**
* Get http method
* @return method
*/
public String getMethod() {
return this.method;
}
/**
* Get payload
* @return payload
*/
public Object getPayload() {
return this.payload;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy