ServiceApiMethod

data class ServiceApiMethod(val name: String? = null, val requestType: String? = null, val responseType: String? = null, val syntax: String? = null)

Constructors

Link copied to clipboard
constructor(name: String? = null, requestType: String? = null, responseType: String? = null, syntax: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val name: String? = null

The simple name of the endpoint as described in the config.

Link copied to clipboard
val requestType: String? = null

The type URL for the request to this API.

Link copied to clipboard
val responseType: String? = null

The type URL for the response from this API.

Link copied to clipboard
val syntax: String? = null

SYNTAX_PROTO2 or SYNTAX_PROTO3.