Show / Hide Table of Contents

Class ScriptParameterInfo

Information about script parameters. isOverwritten specifies that the default parameter present in the script content is overwritten.

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

Properties

IsOverwritten

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

If parameter value is default or overwritten.

Remarks

Required

ScriptParameter

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

Required

In this article
Back to top