Show / Hide Table of Contents

Class ParameterValue

serialization of the parameter to a function

Inheritance
object
ParameterValue
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
Namespace: Algenta.Colectica.Model.Ddi
Assembly: Algenta.Colectica.Model.Ddi.dll
Syntax
public class ParameterValue

Properties

DateValue

a date value

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public DateTime? DateValue { get; set; }
Property Value
Type Description
DateTime?

InputParameter

Identifier of an InParameter to use as the value

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public IdentifierTriple InputParameter { get; set; }
Property Value
Type Description
IdentifierTriple

IsValid

Indicate that the statement is not complete

Declaration
[JsonIgnore]
public bool IsValid { get; }
Property Value
Type Description
bool

NumericValue

a numeric value

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public decimal? NumericValue { get; set; }
Property Value
Type Description
decimal?

OutputParameter

Identifier of an OutParameter to use as the value

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public IdentifierTriple OutputParameter { get; set; }
Property Value
Type Description
IdentifierTriple

TimeValue

a time value

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public DateTime? TimeValue { get; set; }
Property Value
Type Description
DateTime?

Value

a textual value

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public string Value { get; set; }
Property Value
Type Description
string
In this article
Back to top Generated by DocFX