Operation

data class Operation(val name: String, val documentation: String? = null, val input: OperationType, val output: OperationType, val fault: OperationType? = null)(source)

Constructors

Link copied to clipboard
constructor(name: String, documentation: String? = null, input: OperationType, output: OperationType, fault: OperationType? = null)

Properties

Link copied to clipboard
@XmlElement
@XmlSerialName(value = "documentation", namespace = "http://schemas.xmlsoap.org/wsdl/")
val documentation: String?
Link copied to clipboard
@XmlElement
@XmlSerialName(value = "fault", namespace = "http://schemas.xmlsoap.org/wsdl/")
val fault: OperationType?
Link copied to clipboard
@XmlElement
@XmlSerialName(value = "input", namespace = "http://schemas.xmlsoap.org/wsdl/")
val input: OperationType
Link copied to clipboard
Link copied to clipboard
@XmlElement
@XmlSerialName(value = "output", namespace = "http://schemas.xmlsoap.org/wsdl/")
val output: OperationType