Show / Hide Table of Contents

Class RequestQueryParam

Information about request query parameters.

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

Properties

ParamName

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

Name of request query parameter.

Remarks

Required

ParamValue

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

Value of request query parameter.

In this article
Back to top