java.com.ionic.sdk.agent.request.base.AgentRequestBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ionic-sdk Show documentation
Show all versions of ionic-sdk Show documentation
The Ionic Java SDK provides an easy-to-use interface to the Ionic Platform.
package com.ionic.sdk.agent.request.base;
import com.ionic.sdk.agent.data.MetadataHolder;
import java.io.Serializable;
/**
* The base class for Ionic Machina Tools service requests. These encapsulate an https request made to the
* Machina server infrastructure.
*
* Request metadata may be sent to the server along with the service request. This may specify information
* about the client making the request. See Set
* Request Metadata for more information.
*/
public class AgentRequestBase extends MetadataHolder implements Serializable {
/** Value of serialVersionUID from maven coordinates "com.ionic:ionic-sdk:2.8.0". */
private static final long serialVersionUID = 6081520288189577693L;
}