Class Replace
- Namespace
- Styra.Opa.OpenApi.Models.Components
- Assembly
- Styra.Opa.dll
[JsonConverter(typeof(Replace.ReplaceConverter))]
public class Replace
- Inheritance
-
Replace
- Inherited Members
-
Constructors
Replace(ReplaceType)
public Replace(ReplaceType type)
Parameters
type
ReplaceType
Properties
ArrayOfAny
public List<object>? ArrayOfAny { get; set; }
Property Value
- List<object>
Boolean
public bool? Boolean { get; set; }
Property Value
- bool?
MapOfAny
public Dictionary<string, object>? MapOfAny { get; set; }
Property Value
- Dictionary<string, object>
Number
public double? Number { get; set; }
Property Value
- double?
Str
public string? Str { get; set; }
Property Value
- string
Type
public ReplaceType Type { get; set; }
Property Value
- ReplaceType
Methods
CreateArrayOfAny(List<object>)
public static Replace CreateArrayOfAny(List<object> arrayOfAny)
Parameters
arrayOfAny
List<object>
Returns
- Replace
CreateBoolean(bool)
public static Replace CreateBoolean(bool boolean)
Parameters
boolean
bool
Returns
- Replace
CreateMapOfAny(Dictionary<string, object>)
public static Replace CreateMapOfAny(Dictionary<string, object> mapOfAny)
Parameters
mapOfAny
Dictionary<string, object>
Returns
- Replace
CreateNull()
public static Replace CreateNull()
Returns
- Replace
CreateNumber(double)
public static Replace CreateNumber(double number)
Parameters
number
double
Returns
- Replace
CreateStr(string)
public static Replace CreateStr(string str)
Parameters
str
string
Returns
- Replace