Show / Hide Table of Contents

Class OpsiDataObjectQueryParam

Details for a query parameter to be applied on an OPSI data object, when a data object query is executed.

Inheritance
object
OpsiDataObjectQueryParam
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OpsiService.Models
Assembly: OCI.DotNetSDK.Opsi.dll
Syntax
public class OpsiDataObjectQueryParam

Properties

Name

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

Name of the query parameter.

Remarks

Required

Value

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

Value for the query parameter.

Remarks

Required

In this article
Back to top