public final class GetApiSchemaResponseBody extends Object implements KintoneResponseBody
| Constructor and Description |
|---|
GetApiSchemaResponseBody(String id,
String baseUrl,
String path,
String httpMethod,
RequestSchema request,
ResponseSchema response,
Map<String,Schema> schemas)
Creates a new
GetApiSchemaResponseBody instance. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object o) |
String |
getBaseUrl()
The base URL starting with "https://" that will be used with the API.
|
String |
getHttpMethod()
The HTTP method for the API
|
String |
getId()
The ID of the API.
|
String |
getPath()
The API path, such as "records.json".
|
RequestSchema |
getRequest()
The schema information for the API request, in a JSON Schema format.
|
ResponseSchema |
getResponse()
The schema information for the API response, in a JSON Schema format.
|
Map<String,Schema> |
getSchemas()
The schema information common within all APIs.
|
int |
hashCode() |
String |
toString() |
@ConstructorProperties(value={"id","baseUrl","path","httpMethod","request","response","schemas"})
public GetApiSchemaResponseBody(String id,
String baseUrl,
String path,
String httpMethod,
RequestSchema request,
ResponseSchema response,
Map<String,Schema> schemas)
GetApiSchemaResponseBody instance.id - The ID of the API.baseUrl - The base URL starting with "https://" that will be used with the API.path - The API path, such as "records.json".httpMethod - The HTTP method for the APIrequest - The schema information for the API request, in a JSON Schema format.response - The schema information for the API response, in a JSON Schema format.schemas - The schema information common within all APIs.public String getId()
public String getBaseUrl()
public String getPath()
public String getHttpMethod()
public RequestSchema getRequest()
public ResponseSchema getResponse()
public Map<String,Schema> getSchemas()
public boolean equals(Object o)
equals in class Objectpublic int hashCode()
hashCode in class Objectpublic String toString()
toString in class Object