Show / Hide Table of Contents

Class MonitorScriptParameter

Details of the script parameter that can be used to overwrite the parameter present in the script.

Inheritance
object
MonitorScriptParameter
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 MonitorScriptParameter

Properties

ParamName

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

Name of the parameter.

Remarks

Required

ParamValue

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

Value of the parameter.

Remarks

Required

In this article
Back to top