Show / Hide Table of Contents

Class InvokeRawCommandDetails

Definition of unstructured command invocation payload

Inheritance
object
InvokeRawCommandDetails
InvokeRawBinaryCommandDetails
InvokeRawJsonCommandDetails
InvokeRawTextCommandDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IotService.Models
Assembly: OCI.DotNetSDK.Iot.dll
Syntax
[JsonConverter(typeof(InvokeRawCommandDetailsModelConverter))]
public class InvokeRawCommandDetails

Properties

RequestDuration

Declaration
[JsonProperty(PropertyName = "requestDuration")]
public string RequestDuration { get; set; }
Property Value
Type Description
string

Specified duration by which to send the request by.

RequestEndpoint

Declaration
[Required(ErrorMessage = "RequestEndpoint is required.")]
[JsonProperty(PropertyName = "requestEndpoint")]
public string RequestEndpoint { get; set; }
Property Value
Type Description
string

Device endpoint where request should be forwarded to.

Remarks

Required

ResponseDuration

Declaration
[JsonProperty(PropertyName = "responseDuration")]
public string ResponseDuration { get; set; }
Property Value
Type Description
string

Specified duration by which to receive the response by.

ResponseEndpoint

Declaration
[JsonProperty(PropertyName = "responseEndpoint")]
public string ResponseEndpoint { get; set; }
Property Value
Type Description
string

Device endpoint from which response is expected to come.

In this article
Back to top