Get Api Operation Result
data class GetApiOperationResult(val description: String? = null, val displayName: String, val id: String, val method: String, val name: String, val policies: String? = null, val request: RequestContractResponse? = null, val responses: List<ResponseContractResponse>? = null, val templateParameters: List<ParameterContractResponse>? = null, val type: String, val urlTemplate: String)
API Operation details.
Constructors
Link copied to clipboard
constructor(description: String? = null, displayName: String, id: String, method: String, name: String, policies: String? = null, request: RequestContractResponse? = null, responses: List<ResponseContractResponse>? = null, templateParameters: List<ParameterContractResponse>? = null, type: String, urlTemplate: String)
Properties
Link copied to clipboard
Description of the operation. May include HTML formatting tags.
Link copied to clipboard
Operation Name.
Link copied to clipboard
An entity containing request details.
Link copied to clipboard
Array of Operation responses.
Link copied to clipboard
Collection of URL template parameters.
Link copied to clipboard
Relative URL template identifying the target resource for this operation. May include parameters. Example: /customers/{cid}/orders/{oid}/?date={date}