forked from loafle/openapi-generator-original
minor spacing change (#18210)
This commit is contained in:
parent
84b3cd9962
commit
716a82f8bb
@ -200,7 +200,7 @@
|
|||||||
{{#deprecated}}
|
{{#deprecated}}
|
||||||
[Obsolete]
|
[Obsolete]
|
||||||
{{/deprecated}}
|
{{/deprecated}}
|
||||||
public {{{datatypeWithEnum}}}{{#lambda.first}}{{#isNullable}}{{>NullConditionalProperty}} {{/isNullable}}{{^required}}{{nrt?}}{{^nrt}}{{#vendorExtensions.x-is-value-type}}?{{/vendorExtensions.x-is-value-type}}{{/nrt}} {{/required}}{{/lambda.first}} {{name}} {{#required}}{ get; {{^isReadOnly}}set; {{/isReadOnly}}}{{/required}}{{^required}}{ get { return this. {{name}}Option; } {{^isReadOnly}}set { this.{{name}}Option = new{{^net70OrLater}} Option<{{{datatypeWithEnum}}}{{>NullConditionalProperty}}>{{/net70OrLater}}(value); } {{/isReadOnly}}}{{/required}}
|
public {{{datatypeWithEnum}}}{{#lambda.first}}{{#isNullable}}{{>NullConditionalProperty}} {{/isNullable}}{{^required}}{{nrt?}}{{^nrt}}{{#vendorExtensions.x-is-value-type}}?{{/vendorExtensions.x-is-value-type}}{{/nrt}} {{/required}}{{/lambda.first}} {{name}} {{#required}}{ get; {{^isReadOnly}}set; {{/isReadOnly}}}{{/required}}{{^required}}{ get { return this.{{name}}Option; } {{^isReadOnly}}set { this.{{name}}Option = new{{^net70OrLater}} Option<{{{datatypeWithEnum}}}{{>NullConditionalProperty}}>{{/net70OrLater}}(value); } {{/isReadOnly}}}{{/required}}
|
||||||
|
|
||||||
{{/isInherited}}
|
{{/isInherited}}
|
||||||
{{/isEnum}}
|
{{/isEnum}}
|
||||||
|
@ -56,7 +56,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets ActivityOutputs
|
/// Gets or Sets ActivityOutputs
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("activity_outputs")]
|
[JsonPropertyName("activity_outputs")]
|
||||||
public Dictionary<string, List<ActivityOutputElementRepresentation>>? ActivityOutputs { get { return this. ActivityOutputsOption; } set { this.ActivityOutputsOption = new(value); } }
|
public Dictionary<string, List<ActivityOutputElementRepresentation>>? ActivityOutputs { get { return this.ActivityOutputsOption; } set { this.ActivityOutputsOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -58,7 +58,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Prop1
|
/// Gets or Sets Prop1
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("prop1")]
|
[JsonPropertyName("prop1")]
|
||||||
public string? Prop1 { get { return this. Prop1Option; } set { this.Prop1Option = new(value); } }
|
public string? Prop1 { get { return this.Prop1Option; } set { this.Prop1Option = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Prop2
|
/// Used to track the state of Prop2
|
||||||
@ -71,7 +71,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Prop2
|
/// Gets or Sets Prop2
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("prop2")]
|
[JsonPropertyName("prop2")]
|
||||||
public Object? Prop2 { get { return this. Prop2Option; } set { this.Prop2Option = new(value); } }
|
public Object? Prop2 { get { return this.Prop2Option; } set { this.Prop2Option = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -70,7 +70,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Anytype1
|
/// Gets or Sets Anytype1
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("anytype_1")]
|
[JsonPropertyName("anytype_1")]
|
||||||
public Object? Anytype1 { get { return this. Anytype1Option; } set { this.Anytype1Option = new(value); } }
|
public Object? Anytype1 { get { return this.Anytype1Option; } set { this.Anytype1Option = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of EmptyMap
|
/// Used to track the state of EmptyMap
|
||||||
@ -84,7 +84,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>an object with no declared properties and no undeclared properties, hence it's an empty map.</value>
|
/// <value>an object with no declared properties and no undeclared properties, hence it's an empty map.</value>
|
||||||
[JsonPropertyName("empty_map")]
|
[JsonPropertyName("empty_map")]
|
||||||
public Object? EmptyMap { get { return this. EmptyMapOption; } set { this.EmptyMapOption = new(value); } }
|
public Object? EmptyMap { get { return this.EmptyMapOption; } set { this.EmptyMapOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of MapOfMapProperty
|
/// Used to track the state of MapOfMapProperty
|
||||||
@ -97,7 +97,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets MapOfMapProperty
|
/// Gets or Sets MapOfMapProperty
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("map_of_map_property")]
|
[JsonPropertyName("map_of_map_property")]
|
||||||
public Dictionary<string, Dictionary<string, string>>? MapOfMapProperty { get { return this. MapOfMapPropertyOption; } set { this.MapOfMapPropertyOption = new(value); } }
|
public Dictionary<string, Dictionary<string, string>>? MapOfMapProperty { get { return this.MapOfMapPropertyOption; } set { this.MapOfMapPropertyOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of MapProperty
|
/// Used to track the state of MapProperty
|
||||||
@ -110,7 +110,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets MapProperty
|
/// Gets or Sets MapProperty
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("map_property")]
|
[JsonPropertyName("map_property")]
|
||||||
public Dictionary<string, string>? MapProperty { get { return this. MapPropertyOption; } set { this.MapPropertyOption = new(value); } }
|
public Dictionary<string, string>? MapProperty { get { return this.MapPropertyOption; } set { this.MapPropertyOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of MapWithUndeclaredPropertiesAnytype1
|
/// Used to track the state of MapWithUndeclaredPropertiesAnytype1
|
||||||
@ -123,7 +123,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets MapWithUndeclaredPropertiesAnytype1
|
/// Gets or Sets MapWithUndeclaredPropertiesAnytype1
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("map_with_undeclared_properties_anytype_1")]
|
[JsonPropertyName("map_with_undeclared_properties_anytype_1")]
|
||||||
public Object? MapWithUndeclaredPropertiesAnytype1 { get { return this. MapWithUndeclaredPropertiesAnytype1Option; } set { this.MapWithUndeclaredPropertiesAnytype1Option = new(value); } }
|
public Object? MapWithUndeclaredPropertiesAnytype1 { get { return this.MapWithUndeclaredPropertiesAnytype1Option; } set { this.MapWithUndeclaredPropertiesAnytype1Option = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of MapWithUndeclaredPropertiesAnytype2
|
/// Used to track the state of MapWithUndeclaredPropertiesAnytype2
|
||||||
@ -136,7 +136,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets MapWithUndeclaredPropertiesAnytype2
|
/// Gets or Sets MapWithUndeclaredPropertiesAnytype2
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("map_with_undeclared_properties_anytype_2")]
|
[JsonPropertyName("map_with_undeclared_properties_anytype_2")]
|
||||||
public Object? MapWithUndeclaredPropertiesAnytype2 { get { return this. MapWithUndeclaredPropertiesAnytype2Option; } set { this.MapWithUndeclaredPropertiesAnytype2Option = new(value); } }
|
public Object? MapWithUndeclaredPropertiesAnytype2 { get { return this.MapWithUndeclaredPropertiesAnytype2Option; } set { this.MapWithUndeclaredPropertiesAnytype2Option = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of MapWithUndeclaredPropertiesAnytype3
|
/// Used to track the state of MapWithUndeclaredPropertiesAnytype3
|
||||||
@ -149,7 +149,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets MapWithUndeclaredPropertiesAnytype3
|
/// Gets or Sets MapWithUndeclaredPropertiesAnytype3
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("map_with_undeclared_properties_anytype_3")]
|
[JsonPropertyName("map_with_undeclared_properties_anytype_3")]
|
||||||
public Dictionary<string, Object>? MapWithUndeclaredPropertiesAnytype3 { get { return this. MapWithUndeclaredPropertiesAnytype3Option; } set { this.MapWithUndeclaredPropertiesAnytype3Option = new(value); } }
|
public Dictionary<string, Object>? MapWithUndeclaredPropertiesAnytype3 { get { return this.MapWithUndeclaredPropertiesAnytype3Option; } set { this.MapWithUndeclaredPropertiesAnytype3Option = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of MapWithUndeclaredPropertiesString
|
/// Used to track the state of MapWithUndeclaredPropertiesString
|
||||||
@ -162,7 +162,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets MapWithUndeclaredPropertiesString
|
/// Gets or Sets MapWithUndeclaredPropertiesString
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("map_with_undeclared_properties_string")]
|
[JsonPropertyName("map_with_undeclared_properties_string")]
|
||||||
public Dictionary<string, string>? MapWithUndeclaredPropertiesString { get { return this. MapWithUndeclaredPropertiesStringOption; } set { this.MapWithUndeclaredPropertiesStringOption = new(value); } }
|
public Dictionary<string, string>? MapWithUndeclaredPropertiesString { get { return this.MapWithUndeclaredPropertiesStringOption; } set { this.MapWithUndeclaredPropertiesStringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -64,7 +64,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Color
|
/// Gets or Sets Color
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("color")]
|
[JsonPropertyName("color")]
|
||||||
public string? Color { get { return this. ColorOption; } set { this.ColorOption = new(value); } }
|
public string? Color { get { return this.ColorOption; } set { this.ColorOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -60,7 +60,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Code
|
/// Gets or Sets Code
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("code")]
|
[JsonPropertyName("code")]
|
||||||
public int? Code { get { return this. CodeOption; } set { this.CodeOption = new(value); } }
|
public int? Code { get { return this.CodeOption; } set { this.CodeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Message
|
/// Used to track the state of Message
|
||||||
@ -73,7 +73,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Message
|
/// Gets or Sets Message
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("message")]
|
[JsonPropertyName("message")]
|
||||||
public string? Message { get { return this. MessageOption; } set { this.MessageOption = new(value); } }
|
public string? Message { get { return this.MessageOption; } set { this.MessageOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Type
|
/// Used to track the state of Type
|
||||||
@ -86,7 +86,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Type
|
/// Gets or Sets Type
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("type")]
|
[JsonPropertyName("type")]
|
||||||
public string? Type { get { return this. TypeOption; } set { this.TypeOption = new(value); } }
|
public string? Type { get { return this.TypeOption; } set { this.TypeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -60,7 +60,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets ColorCode
|
/// Gets or Sets ColorCode
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("color_code")]
|
[JsonPropertyName("color_code")]
|
||||||
public string? ColorCode { get { return this. ColorCodeOption; } set { this.ColorCodeOption = new(value); } }
|
public string? ColorCode { get { return this.ColorCodeOption; } set { this.ColorCodeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Cultivar
|
/// Used to track the state of Cultivar
|
||||||
@ -73,7 +73,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Cultivar
|
/// Gets or Sets Cultivar
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("cultivar")]
|
[JsonPropertyName("cultivar")]
|
||||||
public string? Cultivar { get { return this. CultivarOption; } set { this.CultivarOption = new(value); } }
|
public string? Cultivar { get { return this.CultivarOption; } set { this.CultivarOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Origin
|
/// Used to track the state of Origin
|
||||||
@ -86,7 +86,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Origin
|
/// Gets or Sets Origin
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("origin")]
|
[JsonPropertyName("origin")]
|
||||||
public string? Origin { get { return this. OriginOption; } set { this.OriginOption = new(value); } }
|
public string? Origin { get { return this.OriginOption; } set { this.OriginOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -64,7 +64,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Mealy
|
/// Gets or Sets Mealy
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("mealy")]
|
[JsonPropertyName("mealy")]
|
||||||
public bool? Mealy { get { return this. MealyOption; } set { this.MealyOption = new(value); } }
|
public bool? Mealy { get { return this.MealyOption; } set { this.MealyOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the string presentation of the object
|
/// Returns the string presentation of the object
|
||||||
|
@ -56,7 +56,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets ArrayArrayNumber
|
/// Gets or Sets ArrayArrayNumber
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("ArrayArrayNumber")]
|
[JsonPropertyName("ArrayArrayNumber")]
|
||||||
public List<List<decimal>>? ArrayArrayNumber { get { return this. ArrayArrayNumberOption; } set { this.ArrayArrayNumberOption = new(value); } }
|
public List<List<decimal>>? ArrayArrayNumber { get { return this.ArrayArrayNumberOption; } set { this.ArrayArrayNumberOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -56,7 +56,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets ArrayNumber
|
/// Gets or Sets ArrayNumber
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("ArrayNumber")]
|
[JsonPropertyName("ArrayNumber")]
|
||||||
public List<decimal>? ArrayNumber { get { return this. ArrayNumberOption; } set { this.ArrayNumberOption = new(value); } }
|
public List<decimal>? ArrayNumber { get { return this.ArrayNumberOption; } set { this.ArrayNumberOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -60,7 +60,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets ArrayArrayOfInteger
|
/// Gets or Sets ArrayArrayOfInteger
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("array_array_of_integer")]
|
[JsonPropertyName("array_array_of_integer")]
|
||||||
public List<List<long>>? ArrayArrayOfInteger { get { return this. ArrayArrayOfIntegerOption; } set { this.ArrayArrayOfIntegerOption = new(value); } }
|
public List<List<long>>? ArrayArrayOfInteger { get { return this.ArrayArrayOfIntegerOption; } set { this.ArrayArrayOfIntegerOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ArrayArrayOfModel
|
/// Used to track the state of ArrayArrayOfModel
|
||||||
@ -73,7 +73,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets ArrayArrayOfModel
|
/// Gets or Sets ArrayArrayOfModel
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("array_array_of_model")]
|
[JsonPropertyName("array_array_of_model")]
|
||||||
public List<List<ReadOnlyFirst>>? ArrayArrayOfModel { get { return this. ArrayArrayOfModelOption; } set { this.ArrayArrayOfModelOption = new(value); } }
|
public List<List<ReadOnlyFirst>>? ArrayArrayOfModel { get { return this.ArrayArrayOfModelOption; } set { this.ArrayArrayOfModelOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ArrayOfString
|
/// Used to track the state of ArrayOfString
|
||||||
@ -86,7 +86,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets ArrayOfString
|
/// Gets or Sets ArrayOfString
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("array_of_string")]
|
[JsonPropertyName("array_of_string")]
|
||||||
public List<string>? ArrayOfString { get { return this. ArrayOfStringOption; } set { this.ArrayOfStringOption = new(value); } }
|
public List<string>? ArrayOfString { get { return this.ArrayOfStringOption; } set { this.ArrayOfStringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -56,7 +56,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets LengthCm
|
/// Gets or Sets LengthCm
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("lengthCm")]
|
[JsonPropertyName("lengthCm")]
|
||||||
public decimal? LengthCm { get { return this. LengthCmOption; } set { this.LengthCmOption = new(value); } }
|
public decimal? LengthCm { get { return this.LengthCmOption; } set { this.LengthCmOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -64,7 +64,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Sweet
|
/// Gets or Sets Sweet
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("sweet")]
|
[JsonPropertyName("sweet")]
|
||||||
public bool? Sweet { get { return this. SweetOption; } set { this.SweetOption = new(value); } }
|
public bool? Sweet { get { return this.SweetOption; } set { this.SweetOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the string presentation of the object
|
/// Returns the string presentation of the object
|
||||||
|
@ -67,7 +67,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>Name of the pet </value>
|
/// <value>Name of the pet </value>
|
||||||
[JsonPropertyName("ATT_NAME")]
|
[JsonPropertyName("ATT_NAME")]
|
||||||
public string? ATT_NAME { get { return this. ATT_NAMEOption; } set { this.ATT_NAMEOption = new(value); } }
|
public string? ATT_NAME { get { return this.ATT_NAMEOption; } set { this.ATT_NAMEOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of CapitalCamel
|
/// Used to track the state of CapitalCamel
|
||||||
@ -80,7 +80,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets CapitalCamel
|
/// Gets or Sets CapitalCamel
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("CapitalCamel")]
|
[JsonPropertyName("CapitalCamel")]
|
||||||
public string? CapitalCamel { get { return this. CapitalCamelOption; } set { this.CapitalCamelOption = new(value); } }
|
public string? CapitalCamel { get { return this.CapitalCamelOption; } set { this.CapitalCamelOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of CapitalSnake
|
/// Used to track the state of CapitalSnake
|
||||||
@ -93,7 +93,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets CapitalSnake
|
/// Gets or Sets CapitalSnake
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("Capital_Snake")]
|
[JsonPropertyName("Capital_Snake")]
|
||||||
public string? CapitalSnake { get { return this. CapitalSnakeOption; } set { this.CapitalSnakeOption = new(value); } }
|
public string? CapitalSnake { get { return this.CapitalSnakeOption; } set { this.CapitalSnakeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of SCAETHFlowPoints
|
/// Used to track the state of SCAETHFlowPoints
|
||||||
@ -106,7 +106,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets SCAETHFlowPoints
|
/// Gets or Sets SCAETHFlowPoints
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("SCA_ETH_Flow_Points")]
|
[JsonPropertyName("SCA_ETH_Flow_Points")]
|
||||||
public string? SCAETHFlowPoints { get { return this. SCAETHFlowPointsOption; } set { this.SCAETHFlowPointsOption = new(value); } }
|
public string? SCAETHFlowPoints { get { return this.SCAETHFlowPointsOption; } set { this.SCAETHFlowPointsOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of SmallCamel
|
/// Used to track the state of SmallCamel
|
||||||
@ -119,7 +119,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets SmallCamel
|
/// Gets or Sets SmallCamel
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("smallCamel")]
|
[JsonPropertyName("smallCamel")]
|
||||||
public string? SmallCamel { get { return this. SmallCamelOption; } set { this.SmallCamelOption = new(value); } }
|
public string? SmallCamel { get { return this.SmallCamelOption; } set { this.SmallCamelOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of SmallSnake
|
/// Used to track the state of SmallSnake
|
||||||
@ -132,7 +132,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets SmallSnake
|
/// Gets or Sets SmallSnake
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("small_Snake")]
|
[JsonPropertyName("small_Snake")]
|
||||||
public string? SmallSnake { get { return this. SmallSnakeOption; } set { this.SmallSnakeOption = new(value); } }
|
public string? SmallSnake { get { return this.SmallSnakeOption; } set { this.SmallSnakeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -58,7 +58,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Declawed
|
/// Gets or Sets Declawed
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("declawed")]
|
[JsonPropertyName("declawed")]
|
||||||
public bool? Declawed { get { return this. DeclawedOption; } set { this.DeclawedOption = new(value); } }
|
public bool? Declawed { get { return this.DeclawedOption; } set { this.DeclawedOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the string presentation of the object
|
/// Returns the string presentation of the object
|
||||||
|
@ -58,7 +58,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Id
|
/// Gets or Sets Id
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("id")]
|
[JsonPropertyName("id")]
|
||||||
public long? Id { get { return this. IdOption; } set { this.IdOption = new(value); } }
|
public long? Id { get { return this.IdOption; } set { this.IdOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets Name
|
/// Gets or Sets Name
|
||||||
|
@ -116,7 +116,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Name
|
/// Gets or Sets Name
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("name")]
|
[JsonPropertyName("name")]
|
||||||
public string? Name { get { return this. NameOption; } set { this.NameOption = new(value); } }
|
public string? Name { get { return this.NameOption; } set { this.NameOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the string presentation of the object
|
/// Returns the string presentation of the object
|
||||||
|
@ -56,7 +56,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Class
|
/// Gets or Sets Class
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("_class")]
|
[JsonPropertyName("_class")]
|
||||||
public string? Class { get { return this. ClassOption; } set { this.ClassOption = new(value); } }
|
public string? Class { get { return this.ClassOption; } set { this.ClassOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -57,7 +57,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <example>Fri Jul 21 00:00:00 UTC 2017</example>
|
/// <example>Fri Jul 21 00:00:00 UTC 2017</example>
|
||||||
[JsonPropertyName("dateOnlyProperty")]
|
[JsonPropertyName("dateOnlyProperty")]
|
||||||
public DateOnly? DateOnlyProperty { get { return this. DateOnlyPropertyOption; } set { this.DateOnlyPropertyOption = new(value); } }
|
public DateOnly? DateOnlyProperty { get { return this.DateOnlyPropertyOption; } set { this.DateOnlyPropertyOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -56,7 +56,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Name
|
/// Gets or Sets Name
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("name")]
|
[JsonPropertyName("name")]
|
||||||
public string? Name { get { return this. NameOption; } set { this.NameOption = new(value); } }
|
public string? Name { get { return this.NameOption; } set { this.NameOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -58,7 +58,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Breed
|
/// Gets or Sets Breed
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("breed")]
|
[JsonPropertyName("breed")]
|
||||||
public string? Breed { get { return this. BreedOption; } set { this.BreedOption = new(value); } }
|
public string? Breed { get { return this.BreedOption; } set { this.BreedOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the string presentation of the object
|
/// Returns the string presentation of the object
|
||||||
|
@ -62,7 +62,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets MainShape
|
/// Gets or Sets MainShape
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("mainShape")]
|
[JsonPropertyName("mainShape")]
|
||||||
public Shape? MainShape { get { return this. MainShapeOption; } set { this.MainShapeOption = new(value); } }
|
public Shape? MainShape { get { return this.MainShapeOption; } set { this.MainShapeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of NullableShape
|
/// Used to track the state of NullableShape
|
||||||
@ -75,7 +75,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets NullableShape
|
/// Gets or Sets NullableShape
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("nullableShape")]
|
[JsonPropertyName("nullableShape")]
|
||||||
public NullableShape? NullableShape { get { return this. NullableShapeOption; } set { this.NullableShapeOption = new(value); } }
|
public NullableShape? NullableShape { get { return this.NullableShapeOption; } set { this.NullableShapeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ShapeOrNull
|
/// Used to track the state of ShapeOrNull
|
||||||
@ -88,7 +88,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets ShapeOrNull
|
/// Gets or Sets ShapeOrNull
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("shapeOrNull")]
|
[JsonPropertyName("shapeOrNull")]
|
||||||
public ShapeOrNull? ShapeOrNull { get { return this. ShapeOrNullOption; } set { this.ShapeOrNullOption = new(value); } }
|
public ShapeOrNull? ShapeOrNull { get { return this.ShapeOrNullOption; } set { this.ShapeOrNullOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Shapes
|
/// Used to track the state of Shapes
|
||||||
@ -101,7 +101,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Shapes
|
/// Gets or Sets Shapes
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("shapes")]
|
[JsonPropertyName("shapes")]
|
||||||
public List<Shape>? Shapes { get { return this. ShapesOption; } set { this.ShapesOption = new(value); } }
|
public List<Shape>? Shapes { get { return this.ShapesOption; } set { this.ShapesOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -203,7 +203,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets ArrayEnum
|
/// Gets or Sets ArrayEnum
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("array_enum")]
|
[JsonPropertyName("array_enum")]
|
||||||
public List<EnumArrays.ArrayEnumEnum>? ArrayEnum { get { return this. ArrayEnumOption; } set { this.ArrayEnumOption = new(value); } }
|
public List<EnumArrays.ArrayEnumEnum>? ArrayEnum { get { return this.ArrayEnumOption; } set { this.ArrayEnumOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -57,7 +57,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>Test capitalization</value>
|
/// <value>Test capitalization</value>
|
||||||
[JsonPropertyName("sourceURI")]
|
[JsonPropertyName("sourceURI")]
|
||||||
public string? SourceURI { get { return this. SourceURIOption; } set { this.SourceURIOption = new(value); } }
|
public string? SourceURI { get { return this.SourceURIOption; } set { this.SourceURIOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -58,7 +58,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets File
|
/// Gets or Sets File
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("file")]
|
[JsonPropertyName("file")]
|
||||||
public File? File { get { return this. FileOption; } set { this.FileOption = new(value); } }
|
public File? File { get { return this.FileOption; } set { this.FileOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Files
|
/// Used to track the state of Files
|
||||||
@ -71,7 +71,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Files
|
/// Gets or Sets Files
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("files")]
|
[JsonPropertyName("files")]
|
||||||
public List<File>? Files { get { return this. FilesOption; } set { this.FilesOption = new(value); } }
|
public List<File>? Files { get { return this.FilesOption; } set { this.FilesOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -56,7 +56,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Bar
|
/// Gets or Sets Bar
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("bar")]
|
[JsonPropertyName("bar")]
|
||||||
public string? Bar { get { return this. BarOption; } set { this.BarOption = new(value); } }
|
public string? Bar { get { return this.BarOption; } set { this.BarOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -56,7 +56,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets String
|
/// Gets or Sets String
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("string")]
|
[JsonPropertyName("string")]
|
||||||
public Foo? String { get { return this. StringOption; } set { this.StringOption = new(value); } }
|
public Foo? String { get { return this.StringOption; } set { this.StringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -117,7 +117,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Binary
|
/// Gets or Sets Binary
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("binary")]
|
[JsonPropertyName("binary")]
|
||||||
public System.IO.Stream? Binary { get { return this. BinaryOption; } set { this.BinaryOption = new(value); } }
|
public System.IO.Stream? Binary { get { return this.BinaryOption; } set { this.BinaryOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of DateTime
|
/// Used to track the state of DateTime
|
||||||
@ -131,7 +131,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <example>2007-12-03T10:15:30+01:00</example>
|
/// <example>2007-12-03T10:15:30+01:00</example>
|
||||||
[JsonPropertyName("dateTime")]
|
[JsonPropertyName("dateTime")]
|
||||||
public DateTime? DateTime { get { return this. DateTimeOption; } set { this.DateTimeOption = new(value); } }
|
public DateTime? DateTime { get { return this.DateTimeOption; } set { this.DateTimeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Decimal
|
/// Used to track the state of Decimal
|
||||||
@ -144,7 +144,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Decimal
|
/// Gets or Sets Decimal
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("decimal")]
|
[JsonPropertyName("decimal")]
|
||||||
public decimal? Decimal { get { return this. DecimalOption; } set { this.DecimalOption = new(value); } }
|
public decimal? Decimal { get { return this.DecimalOption; } set { this.DecimalOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Double
|
/// Used to track the state of Double
|
||||||
@ -157,7 +157,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Double
|
/// Gets or Sets Double
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("double")]
|
[JsonPropertyName("double")]
|
||||||
public double? Double { get { return this. DoubleOption; } set { this.DoubleOption = new(value); } }
|
public double? Double { get { return this.DoubleOption; } set { this.DoubleOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Float
|
/// Used to track the state of Float
|
||||||
@ -170,7 +170,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Float
|
/// Gets or Sets Float
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("float")]
|
[JsonPropertyName("float")]
|
||||||
public float? Float { get { return this. FloatOption; } set { this.FloatOption = new(value); } }
|
public float? Float { get { return this.FloatOption; } set { this.FloatOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Int32
|
/// Used to track the state of Int32
|
||||||
@ -183,7 +183,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Int32
|
/// Gets or Sets Int32
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("int32")]
|
[JsonPropertyName("int32")]
|
||||||
public int? Int32 { get { return this. Int32Option; } set { this.Int32Option = new(value); } }
|
public int? Int32 { get { return this.Int32Option; } set { this.Int32Option = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Int64
|
/// Used to track the state of Int64
|
||||||
@ -196,7 +196,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Int64
|
/// Gets or Sets Int64
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("int64")]
|
[JsonPropertyName("int64")]
|
||||||
public long? Int64 { get { return this. Int64Option; } set { this.Int64Option = new(value); } }
|
public long? Int64 { get { return this.Int64Option; } set { this.Int64Option = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Integer
|
/// Used to track the state of Integer
|
||||||
@ -209,7 +209,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Integer
|
/// Gets or Sets Integer
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("integer")]
|
[JsonPropertyName("integer")]
|
||||||
public int? Integer { get { return this. IntegerOption; } set { this.IntegerOption = new(value); } }
|
public int? Integer { get { return this.IntegerOption; } set { this.IntegerOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of PatternWithBackslash
|
/// Used to track the state of PatternWithBackslash
|
||||||
@ -223,7 +223,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>None</value>
|
/// <value>None</value>
|
||||||
[JsonPropertyName("pattern_with_backslash")]
|
[JsonPropertyName("pattern_with_backslash")]
|
||||||
public string? PatternWithBackslash { get { return this. PatternWithBackslashOption; } set { this.PatternWithBackslashOption = new(value); } }
|
public string? PatternWithBackslash { get { return this.PatternWithBackslashOption; } set { this.PatternWithBackslashOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of PatternWithDigits
|
/// Used to track the state of PatternWithDigits
|
||||||
@ -237,7 +237,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>A string that is a 10 digit number. Can have leading zeros.</value>
|
/// <value>A string that is a 10 digit number. Can have leading zeros.</value>
|
||||||
[JsonPropertyName("pattern_with_digits")]
|
[JsonPropertyName("pattern_with_digits")]
|
||||||
public string? PatternWithDigits { get { return this. PatternWithDigitsOption; } set { this.PatternWithDigitsOption = new(value); } }
|
public string? PatternWithDigits { get { return this.PatternWithDigitsOption; } set { this.PatternWithDigitsOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of PatternWithDigitsAndDelimiter
|
/// Used to track the state of PatternWithDigitsAndDelimiter
|
||||||
@ -251,7 +251,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01.</value>
|
/// <value>A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01.</value>
|
||||||
[JsonPropertyName("pattern_with_digits_and_delimiter")]
|
[JsonPropertyName("pattern_with_digits_and_delimiter")]
|
||||||
public string? PatternWithDigitsAndDelimiter { get { return this. PatternWithDigitsAndDelimiterOption; } set { this.PatternWithDigitsAndDelimiterOption = new(value); } }
|
public string? PatternWithDigitsAndDelimiter { get { return this.PatternWithDigitsAndDelimiterOption; } set { this.PatternWithDigitsAndDelimiterOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of String
|
/// Used to track the state of String
|
||||||
@ -264,7 +264,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets String
|
/// Gets or Sets String
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("string")]
|
[JsonPropertyName("string")]
|
||||||
public string? String { get { return this. StringOption; } set { this.StringOption = new(value); } }
|
public string? String { get { return this.StringOption; } set { this.StringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of UnsignedInteger
|
/// Used to track the state of UnsignedInteger
|
||||||
@ -277,7 +277,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets UnsignedInteger
|
/// Gets or Sets UnsignedInteger
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("unsigned_integer")]
|
[JsonPropertyName("unsigned_integer")]
|
||||||
public uint? UnsignedInteger { get { return this. UnsignedIntegerOption; } set { this.UnsignedIntegerOption = new(value); } }
|
public uint? UnsignedInteger { get { return this.UnsignedIntegerOption; } set { this.UnsignedIntegerOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of UnsignedLong
|
/// Used to track the state of UnsignedLong
|
||||||
@ -290,7 +290,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets UnsignedLong
|
/// Gets or Sets UnsignedLong
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("unsigned_long")]
|
[JsonPropertyName("unsigned_long")]
|
||||||
public ulong? UnsignedLong { get { return this. UnsignedLongOption; } set { this.UnsignedLongOption = new(value); } }
|
public ulong? UnsignedLong { get { return this.UnsignedLongOption; } set { this.UnsignedLongOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Uuid
|
/// Used to track the state of Uuid
|
||||||
@ -304,7 +304,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <example>72f98069-206d-4f12-9f12-3d1e525a8e84</example>
|
/// <example>72f98069-206d-4f12-9f12-3d1e525a8e84</example>
|
||||||
[JsonPropertyName("uuid")]
|
[JsonPropertyName("uuid")]
|
||||||
public Guid? Uuid { get { return this. UuidOption; } set { this.UuidOption = new(value); } }
|
public Guid? Uuid { get { return this.UuidOption; } set { this.UuidOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -79,7 +79,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Color
|
/// Gets or Sets Color
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("color")]
|
[JsonPropertyName("color")]
|
||||||
public string? Color { get { return this. ColorOption; } set { this.ColorOption = new(value); } }
|
public string? Color { get { return this.ColorOption; } set { this.ColorOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the string presentation of the object
|
/// Returns the string presentation of the object
|
||||||
|
@ -83,7 +83,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Color
|
/// Gets or Sets Color
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("color")]
|
[JsonPropertyName("color")]
|
||||||
public string? Color { get { return this. ColorOption; } set { this.ColorOption = new(value); } }
|
public string? Color { get { return this.ColorOption; } set { this.ColorOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the string presentation of the object
|
/// Returns the string presentation of the object
|
||||||
|
@ -58,7 +58,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Bar
|
/// Gets or Sets Bar
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("bar")]
|
[JsonPropertyName("bar")]
|
||||||
public string? Bar { get { return this. BarOption; } }
|
public string? Bar { get { return this.BarOption; } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Foo
|
/// Used to track the state of Foo
|
||||||
@ -71,7 +71,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Foo
|
/// Gets or Sets Foo
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("foo")]
|
[JsonPropertyName("foo")]
|
||||||
public string? Foo { get { return this. FooOption; } }
|
public string? Foo { get { return this.FooOption; } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -56,7 +56,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets NullableMessage
|
/// Gets or Sets NullableMessage
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("NullableMessage")]
|
[JsonPropertyName("NullableMessage")]
|
||||||
public string? NullableMessage { get { return this. NullableMessageOption; } set { this.NullableMessageOption = new(value); } }
|
public string? NullableMessage { get { return this.NullableMessageOption; } set { this.NullableMessageOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -56,7 +56,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Var123List
|
/// Gets or Sets Var123List
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("123-list")]
|
[JsonPropertyName("123-list")]
|
||||||
public string? Var123List { get { return this. Var123ListOption; } set { this.Var123ListOption = new(value); } }
|
public string? Var123List { get { return this.Var123ListOption; } set { this.Var123ListOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -58,7 +58,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets EscapedLiteralString
|
/// Gets or Sets EscapedLiteralString
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("escapedLiteralString")]
|
[JsonPropertyName("escapedLiteralString")]
|
||||||
public string? EscapedLiteralString { get { return this. EscapedLiteralStringOption; } set { this.EscapedLiteralStringOption = new(value); } }
|
public string? EscapedLiteralString { get { return this.EscapedLiteralStringOption; } set { this.EscapedLiteralStringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of UnescapedLiteralString
|
/// Used to track the state of UnescapedLiteralString
|
||||||
@ -71,7 +71,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets UnescapedLiteralString
|
/// Gets or Sets UnescapedLiteralString
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("unescapedLiteralString")]
|
[JsonPropertyName("unescapedLiteralString")]
|
||||||
public string? UnescapedLiteralString { get { return this. UnescapedLiteralStringOption; } set { this.UnescapedLiteralStringOption = new(value); } }
|
public string? UnescapedLiteralString { get { return this.UnescapedLiteralStringOption; } set { this.UnescapedLiteralStringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -128,7 +128,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets DirectMap
|
/// Gets or Sets DirectMap
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("direct_map")]
|
[JsonPropertyName("direct_map")]
|
||||||
public Dictionary<string, bool>? DirectMap { get { return this. DirectMapOption; } set { this.DirectMapOption = new(value); } }
|
public Dictionary<string, bool>? DirectMap { get { return this.DirectMapOption; } set { this.DirectMapOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of IndirectMap
|
/// Used to track the state of IndirectMap
|
||||||
@ -141,7 +141,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets IndirectMap
|
/// Gets or Sets IndirectMap
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("indirect_map")]
|
[JsonPropertyName("indirect_map")]
|
||||||
public Dictionary<string, bool>? IndirectMap { get { return this. IndirectMapOption; } set { this.IndirectMapOption = new(value); } }
|
public Dictionary<string, bool>? IndirectMap { get { return this.IndirectMapOption; } set { this.IndirectMapOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of MapMapOfString
|
/// Used to track the state of MapMapOfString
|
||||||
@ -154,7 +154,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets MapMapOfString
|
/// Gets or Sets MapMapOfString
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("map_map_of_string")]
|
[JsonPropertyName("map_map_of_string")]
|
||||||
public Dictionary<string, Dictionary<string, string>>? MapMapOfString { get { return this. MapMapOfStringOption; } set { this.MapMapOfStringOption = new(value); } }
|
public Dictionary<string, Dictionary<string, string>>? MapMapOfString { get { return this.MapMapOfStringOption; } set { this.MapMapOfStringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of MapOfEnumString
|
/// Used to track the state of MapOfEnumString
|
||||||
@ -167,7 +167,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets MapOfEnumString
|
/// Gets or Sets MapOfEnumString
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("map_of_enum_string")]
|
[JsonPropertyName("map_of_enum_string")]
|
||||||
public Dictionary<string, MapTest.InnerEnum>? MapOfEnumString { get { return this. MapOfEnumStringOption; } set { this.MapOfEnumStringOption = new(value); } }
|
public Dictionary<string, MapTest.InnerEnum>? MapOfEnumString { get { return this.MapOfEnumStringOption; } set { this.MapOfEnumStringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -62,7 +62,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets DateTime
|
/// Gets or Sets DateTime
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("dateTime")]
|
[JsonPropertyName("dateTime")]
|
||||||
public DateTime? DateTime { get { return this. DateTimeOption; } set { this.DateTimeOption = new(value); } }
|
public DateTime? DateTime { get { return this.DateTimeOption; } set { this.DateTimeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Map
|
/// Used to track the state of Map
|
||||||
@ -75,7 +75,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Map
|
/// Gets or Sets Map
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("map")]
|
[JsonPropertyName("map")]
|
||||||
public Dictionary<string, Animal>? Map { get { return this. MapOption; } set { this.MapOption = new(value); } }
|
public Dictionary<string, Animal>? Map { get { return this.MapOption; } set { this.MapOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Uuid
|
/// Used to track the state of Uuid
|
||||||
@ -88,7 +88,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Uuid
|
/// Gets or Sets Uuid
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("uuid")]
|
[JsonPropertyName("uuid")]
|
||||||
public Guid? Uuid { get { return this. UuidOption; } set { this.UuidOption = new(value); } }
|
public Guid? Uuid { get { return this.UuidOption; } set { this.UuidOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of UuidWithPattern
|
/// Used to track the state of UuidWithPattern
|
||||||
@ -101,7 +101,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets UuidWithPattern
|
/// Gets or Sets UuidWithPattern
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("uuid_with_pattern")]
|
[JsonPropertyName("uuid_with_pattern")]
|
||||||
public Guid? UuidWithPattern { get { return this. UuidWithPatternOption; } set { this.UuidWithPatternOption = new(value); } }
|
public Guid? UuidWithPattern { get { return this.UuidWithPatternOption; } set { this.UuidWithPatternOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -58,7 +58,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Class
|
/// Gets or Sets Class
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("class")]
|
[JsonPropertyName("class")]
|
||||||
public string? Class { get { return this. ClassOption; } set { this.ClassOption = new(value); } }
|
public string? Class { get { return this.ClassOption; } set { this.ClassOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Name
|
/// Used to track the state of Name
|
||||||
@ -71,7 +71,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Name
|
/// Gets or Sets Name
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("name")]
|
[JsonPropertyName("name")]
|
||||||
public int? Name { get { return this. NameOption; } set { this.NameOption = new(value); } }
|
public int? Name { get { return this.NameOption; } set { this.NameOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -56,7 +56,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets VarClient
|
/// Gets or Sets VarClient
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("client")]
|
[JsonPropertyName("client")]
|
||||||
public string? VarClient { get { return this. VarClientOption; } set { this.VarClientOption = new(value); } }
|
public string? VarClient { get { return this.VarClientOption; } set { this.VarClientOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -68,7 +68,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Property
|
/// Gets or Sets Property
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("property")]
|
[JsonPropertyName("property")]
|
||||||
public string? Property { get { return this. PropertyOption; } set { this.PropertyOption = new(value); } }
|
public string? Property { get { return this.PropertyOption; } set { this.PropertyOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of SnakeCase
|
/// Used to track the state of SnakeCase
|
||||||
@ -81,7 +81,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets SnakeCase
|
/// Gets or Sets SnakeCase
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("snake_case")]
|
[JsonPropertyName("snake_case")]
|
||||||
public int? SnakeCase { get { return this. SnakeCaseOption; } }
|
public int? SnakeCase { get { return this.SnakeCaseOption; } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Var123Number
|
/// Used to track the state of Var123Number
|
||||||
@ -94,7 +94,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Var123Number
|
/// Gets or Sets Var123Number
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("123Number")]
|
[JsonPropertyName("123Number")]
|
||||||
public int? Var123Number { get { return this. Var123NumberOption; } }
|
public int? Var123Number { get { return this.Var123NumberOption; } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -78,7 +78,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets ArrayAndItemsNullableProp
|
/// Gets or Sets ArrayAndItemsNullableProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("array_and_items_nullable_prop")]
|
[JsonPropertyName("array_and_items_nullable_prop")]
|
||||||
public List<Object>? ArrayAndItemsNullableProp { get { return this. ArrayAndItemsNullablePropOption; } set { this.ArrayAndItemsNullablePropOption = new(value); } }
|
public List<Object>? ArrayAndItemsNullableProp { get { return this.ArrayAndItemsNullablePropOption; } set { this.ArrayAndItemsNullablePropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ArrayItemsNullable
|
/// Used to track the state of ArrayItemsNullable
|
||||||
@ -91,7 +91,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets ArrayItemsNullable
|
/// Gets or Sets ArrayItemsNullable
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("array_items_nullable")]
|
[JsonPropertyName("array_items_nullable")]
|
||||||
public List<Object>? ArrayItemsNullable { get { return this. ArrayItemsNullableOption; } set { this.ArrayItemsNullableOption = new(value); } }
|
public List<Object>? ArrayItemsNullable { get { return this.ArrayItemsNullableOption; } set { this.ArrayItemsNullableOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ArrayNullableProp
|
/// Used to track the state of ArrayNullableProp
|
||||||
@ -104,7 +104,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets ArrayNullableProp
|
/// Gets or Sets ArrayNullableProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("array_nullable_prop")]
|
[JsonPropertyName("array_nullable_prop")]
|
||||||
public List<Object>? ArrayNullableProp { get { return this. ArrayNullablePropOption; } set { this.ArrayNullablePropOption = new(value); } }
|
public List<Object>? ArrayNullableProp { get { return this.ArrayNullablePropOption; } set { this.ArrayNullablePropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of BooleanProp
|
/// Used to track the state of BooleanProp
|
||||||
@ -117,7 +117,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets BooleanProp
|
/// Gets or Sets BooleanProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("boolean_prop")]
|
[JsonPropertyName("boolean_prop")]
|
||||||
public bool? BooleanProp { get { return this. BooleanPropOption; } set { this.BooleanPropOption = new(value); } }
|
public bool? BooleanProp { get { return this.BooleanPropOption; } set { this.BooleanPropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of DateProp
|
/// Used to track the state of DateProp
|
||||||
@ -130,7 +130,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets DateProp
|
/// Gets or Sets DateProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("date_prop")]
|
[JsonPropertyName("date_prop")]
|
||||||
public DateOnly? DateProp { get { return this. DatePropOption; } set { this.DatePropOption = new(value); } }
|
public DateOnly? DateProp { get { return this.DatePropOption; } set { this.DatePropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of DatetimeProp
|
/// Used to track the state of DatetimeProp
|
||||||
@ -143,7 +143,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets DatetimeProp
|
/// Gets or Sets DatetimeProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("datetime_prop")]
|
[JsonPropertyName("datetime_prop")]
|
||||||
public DateTime? DatetimeProp { get { return this. DatetimePropOption; } set { this.DatetimePropOption = new(value); } }
|
public DateTime? DatetimeProp { get { return this.DatetimePropOption; } set { this.DatetimePropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of IntegerProp
|
/// Used to track the state of IntegerProp
|
||||||
@ -156,7 +156,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets IntegerProp
|
/// Gets or Sets IntegerProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("integer_prop")]
|
[JsonPropertyName("integer_prop")]
|
||||||
public int? IntegerProp { get { return this. IntegerPropOption; } set { this.IntegerPropOption = new(value); } }
|
public int? IntegerProp { get { return this.IntegerPropOption; } set { this.IntegerPropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of NumberProp
|
/// Used to track the state of NumberProp
|
||||||
@ -169,7 +169,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets NumberProp
|
/// Gets or Sets NumberProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("number_prop")]
|
[JsonPropertyName("number_prop")]
|
||||||
public decimal? NumberProp { get { return this. NumberPropOption; } set { this.NumberPropOption = new(value); } }
|
public decimal? NumberProp { get { return this.NumberPropOption; } set { this.NumberPropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ObjectAndItemsNullableProp
|
/// Used to track the state of ObjectAndItemsNullableProp
|
||||||
@ -182,7 +182,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets ObjectAndItemsNullableProp
|
/// Gets or Sets ObjectAndItemsNullableProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("object_and_items_nullable_prop")]
|
[JsonPropertyName("object_and_items_nullable_prop")]
|
||||||
public Dictionary<string, Object>? ObjectAndItemsNullableProp { get { return this. ObjectAndItemsNullablePropOption; } set { this.ObjectAndItemsNullablePropOption = new(value); } }
|
public Dictionary<string, Object>? ObjectAndItemsNullableProp { get { return this.ObjectAndItemsNullablePropOption; } set { this.ObjectAndItemsNullablePropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ObjectItemsNullable
|
/// Used to track the state of ObjectItemsNullable
|
||||||
@ -195,7 +195,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets ObjectItemsNullable
|
/// Gets or Sets ObjectItemsNullable
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("object_items_nullable")]
|
[JsonPropertyName("object_items_nullable")]
|
||||||
public Dictionary<string, Object>? ObjectItemsNullable { get { return this. ObjectItemsNullableOption; } set { this.ObjectItemsNullableOption = new(value); } }
|
public Dictionary<string, Object>? ObjectItemsNullable { get { return this.ObjectItemsNullableOption; } set { this.ObjectItemsNullableOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ObjectNullableProp
|
/// Used to track the state of ObjectNullableProp
|
||||||
@ -208,7 +208,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets ObjectNullableProp
|
/// Gets or Sets ObjectNullableProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("object_nullable_prop")]
|
[JsonPropertyName("object_nullable_prop")]
|
||||||
public Dictionary<string, Object>? ObjectNullableProp { get { return this. ObjectNullablePropOption; } set { this.ObjectNullablePropOption = new(value); } }
|
public Dictionary<string, Object>? ObjectNullableProp { get { return this.ObjectNullablePropOption; } set { this.ObjectNullablePropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of StringProp
|
/// Used to track the state of StringProp
|
||||||
@ -221,7 +221,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets StringProp
|
/// Gets or Sets StringProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("string_prop")]
|
[JsonPropertyName("string_prop")]
|
||||||
public string? StringProp { get { return this. StringPropOption; } set { this.StringPropOption = new(value); } }
|
public string? StringProp { get { return this.StringPropOption; } set { this.StringPropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -57,7 +57,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <example>72f98069-206d-4f12-9f12-3d1e525a8e84</example>
|
/// <example>72f98069-206d-4f12-9f12-3d1e525a8e84</example>
|
||||||
[JsonPropertyName("uuid")]
|
[JsonPropertyName("uuid")]
|
||||||
public Guid? Uuid { get { return this. UuidOption; } set { this.UuidOption = new(value); } }
|
public Guid? Uuid { get { return this.UuidOption; } set { this.UuidOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -56,7 +56,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets JustNumber
|
/// Gets or Sets JustNumber
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("JustNumber")]
|
[JsonPropertyName("JustNumber")]
|
||||||
public decimal? JustNumber { get { return this. JustNumberOption; } set { this.JustNumberOption = new(value); } }
|
public decimal? JustNumber { get { return this.JustNumberOption; } set { this.JustNumberOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -63,7 +63,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("bars")]
|
[JsonPropertyName("bars")]
|
||||||
[Obsolete]
|
[Obsolete]
|
||||||
public List<string>? Bars { get { return this. BarsOption; } set { this.BarsOption = new(value); } }
|
public List<string>? Bars { get { return this.BarsOption; } set { this.BarsOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of DeprecatedRef
|
/// Used to track the state of DeprecatedRef
|
||||||
@ -77,7 +77,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("deprecatedRef")]
|
[JsonPropertyName("deprecatedRef")]
|
||||||
[Obsolete]
|
[Obsolete]
|
||||||
public DeprecatedObject? DeprecatedRef { get { return this. DeprecatedRefOption; } set { this.DeprecatedRefOption = new(value); } }
|
public DeprecatedObject? DeprecatedRef { get { return this.DeprecatedRefOption; } set { this.DeprecatedRefOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Id
|
/// Used to track the state of Id
|
||||||
@ -91,7 +91,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("id")]
|
[JsonPropertyName("id")]
|
||||||
[Obsolete]
|
[Obsolete]
|
||||||
public decimal? Id { get { return this. IdOption; } set { this.IdOption = new(value); } }
|
public decimal? Id { get { return this.IdOption; } set { this.IdOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Uuid
|
/// Used to track the state of Uuid
|
||||||
@ -104,7 +104,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Uuid
|
/// Gets or Sets Uuid
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("uuid")]
|
[JsonPropertyName("uuid")]
|
||||||
public string? Uuid { get { return this. UuidOption; } set { this.UuidOption = new(value); } }
|
public string? Uuid { get { return this.UuidOption; } set { this.UuidOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -161,7 +161,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Complete
|
/// Gets or Sets Complete
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("complete")]
|
[JsonPropertyName("complete")]
|
||||||
public bool? Complete { get { return this. CompleteOption; } set { this.CompleteOption = new(value); } }
|
public bool? Complete { get { return this.CompleteOption; } set { this.CompleteOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Id
|
/// Used to track the state of Id
|
||||||
@ -174,7 +174,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Id
|
/// Gets or Sets Id
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("id")]
|
[JsonPropertyName("id")]
|
||||||
public long? Id { get { return this. IdOption; } set { this.IdOption = new(value); } }
|
public long? Id { get { return this.IdOption; } set { this.IdOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of PetId
|
/// Used to track the state of PetId
|
||||||
@ -187,7 +187,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets PetId
|
/// Gets or Sets PetId
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("petId")]
|
[JsonPropertyName("petId")]
|
||||||
public long? PetId { get { return this. PetIdOption; } set { this.PetIdOption = new(value); } }
|
public long? PetId { get { return this.PetIdOption; } set { this.PetIdOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Quantity
|
/// Used to track the state of Quantity
|
||||||
@ -200,7 +200,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Quantity
|
/// Gets or Sets Quantity
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("quantity")]
|
[JsonPropertyName("quantity")]
|
||||||
public int? Quantity { get { return this. QuantityOption; } set { this.QuantityOption = new(value); } }
|
public int? Quantity { get { return this.QuantityOption; } set { this.QuantityOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ShipDate
|
/// Used to track the state of ShipDate
|
||||||
@ -214,7 +214,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <example>2020-02-02T20:20:20.000222Z</example>
|
/// <example>2020-02-02T20:20:20.000222Z</example>
|
||||||
[JsonPropertyName("shipDate")]
|
[JsonPropertyName("shipDate")]
|
||||||
public DateTime? ShipDate { get { return this. ShipDateOption; } set { this.ShipDateOption = new(value); } }
|
public DateTime? ShipDate { get { return this.ShipDateOption; } set { this.ShipDateOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -60,7 +60,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets MyBoolean
|
/// Gets or Sets MyBoolean
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("my_boolean")]
|
[JsonPropertyName("my_boolean")]
|
||||||
public bool? MyBoolean { get { return this. MyBooleanOption; } set { this.MyBooleanOption = new(value); } }
|
public bool? MyBoolean { get { return this.MyBooleanOption; } set { this.MyBooleanOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of MyNumber
|
/// Used to track the state of MyNumber
|
||||||
@ -73,7 +73,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets MyNumber
|
/// Gets or Sets MyNumber
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("my_number")]
|
[JsonPropertyName("my_number")]
|
||||||
public decimal? MyNumber { get { return this. MyNumberOption; } set { this.MyNumberOption = new(value); } }
|
public decimal? MyNumber { get { return this.MyNumberOption; } set { this.MyNumberOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of MyString
|
/// Used to track the state of MyString
|
||||||
@ -86,7 +86,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets MyString
|
/// Gets or Sets MyString
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("my_string")]
|
[JsonPropertyName("my_string")]
|
||||||
public string? MyString { get { return this. MyStringOption; } set { this.MyStringOption = new(value); } }
|
public string? MyString { get { return this.MyStringOption; } set { this.MyStringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -174,7 +174,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Category
|
/// Gets or Sets Category
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("category")]
|
[JsonPropertyName("category")]
|
||||||
public Category? Category { get { return this. CategoryOption; } set { this.CategoryOption = new(value); } }
|
public Category? Category { get { return this.CategoryOption; } set { this.CategoryOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Id
|
/// Used to track the state of Id
|
||||||
@ -187,7 +187,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Id
|
/// Gets or Sets Id
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("id")]
|
[JsonPropertyName("id")]
|
||||||
public long? Id { get { return this. IdOption; } set { this.IdOption = new(value); } }
|
public long? Id { get { return this.IdOption; } set { this.IdOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Tags
|
/// Used to track the state of Tags
|
||||||
@ -200,7 +200,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Tags
|
/// Gets or Sets Tags
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("tags")]
|
[JsonPropertyName("tags")]
|
||||||
public List<Tag>? Tags { get { return this. TagsOption; } set { this.TagsOption = new(value); } }
|
public List<Tag>? Tags { get { return this.TagsOption; } set { this.TagsOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -58,7 +58,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Bar
|
/// Gets or Sets Bar
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("bar")]
|
[JsonPropertyName("bar")]
|
||||||
public string? Bar { get { return this. BarOption; } }
|
public string? Bar { get { return this.BarOption; } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Baz
|
/// Used to track the state of Baz
|
||||||
@ -71,7 +71,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Baz
|
/// Gets or Sets Baz
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("baz")]
|
[JsonPropertyName("baz")]
|
||||||
public string? Baz { get { return this. BazOption; } set { this.BazOption = new(value); } }
|
public string? Baz { get { return this.BazOption; } set { this.BazOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -1458,7 +1458,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets NotRequiredNotnullableDateProp
|
/// Gets or Sets NotRequiredNotnullableDateProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("not_required_notnullable_date_prop")]
|
[JsonPropertyName("not_required_notnullable_date_prop")]
|
||||||
public DateOnly? NotRequiredNotnullableDateProp { get { return this. NotRequiredNotnullableDatePropOption; } set { this.NotRequiredNotnullableDatePropOption = new(value); } }
|
public DateOnly? NotRequiredNotnullableDateProp { get { return this.NotRequiredNotnullableDatePropOption; } set { this.NotRequiredNotnullableDatePropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of NotRequiredNotnullableintegerProp
|
/// Used to track the state of NotRequiredNotnullableintegerProp
|
||||||
@ -1471,7 +1471,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets NotRequiredNotnullableintegerProp
|
/// Gets or Sets NotRequiredNotnullableintegerProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("not_required_notnullableinteger_prop")]
|
[JsonPropertyName("not_required_notnullableinteger_prop")]
|
||||||
public int? NotRequiredNotnullableintegerProp { get { return this. NotRequiredNotnullableintegerPropOption; } set { this.NotRequiredNotnullableintegerPropOption = new(value); } }
|
public int? NotRequiredNotnullableintegerProp { get { return this.NotRequiredNotnullableintegerPropOption; } set { this.NotRequiredNotnullableintegerPropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of NotRequiredNullableDateProp
|
/// Used to track the state of NotRequiredNullableDateProp
|
||||||
@ -1484,7 +1484,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets NotRequiredNullableDateProp
|
/// Gets or Sets NotRequiredNullableDateProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("not_required_nullable_date_prop")]
|
[JsonPropertyName("not_required_nullable_date_prop")]
|
||||||
public DateOnly? NotRequiredNullableDateProp { get { return this. NotRequiredNullableDatePropOption; } set { this.NotRequiredNullableDatePropOption = new(value); } }
|
public DateOnly? NotRequiredNullableDateProp { get { return this.NotRequiredNullableDatePropOption; } set { this.NotRequiredNullableDatePropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of NotRequiredNullableIntegerProp
|
/// Used to track the state of NotRequiredNullableIntegerProp
|
||||||
@ -1497,7 +1497,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets NotRequiredNullableIntegerProp
|
/// Gets or Sets NotRequiredNullableIntegerProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("not_required_nullable_integer_prop")]
|
[JsonPropertyName("not_required_nullable_integer_prop")]
|
||||||
public int? NotRequiredNullableIntegerProp { get { return this. NotRequiredNullableIntegerPropOption; } set { this.NotRequiredNullableIntegerPropOption = new(value); } }
|
public int? NotRequiredNullableIntegerProp { get { return this.NotRequiredNullableIntegerPropOption; } set { this.NotRequiredNullableIntegerPropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of NotrequiredNotnullableArrayOfString
|
/// Used to track the state of NotrequiredNotnullableArrayOfString
|
||||||
@ -1510,7 +1510,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets NotrequiredNotnullableArrayOfString
|
/// Gets or Sets NotrequiredNotnullableArrayOfString
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("notrequired_notnullable_array_of_string")]
|
[JsonPropertyName("notrequired_notnullable_array_of_string")]
|
||||||
public List<string>? NotrequiredNotnullableArrayOfString { get { return this. NotrequiredNotnullableArrayOfStringOption; } set { this.NotrequiredNotnullableArrayOfStringOption = new(value); } }
|
public List<string>? NotrequiredNotnullableArrayOfString { get { return this.NotrequiredNotnullableArrayOfStringOption; } set { this.NotrequiredNotnullableArrayOfStringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of NotrequiredNotnullableBooleanProp
|
/// Used to track the state of NotrequiredNotnullableBooleanProp
|
||||||
@ -1523,7 +1523,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets NotrequiredNotnullableBooleanProp
|
/// Gets or Sets NotrequiredNotnullableBooleanProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("notrequired_notnullable_boolean_prop")]
|
[JsonPropertyName("notrequired_notnullable_boolean_prop")]
|
||||||
public bool? NotrequiredNotnullableBooleanProp { get { return this. NotrequiredNotnullableBooleanPropOption; } set { this.NotrequiredNotnullableBooleanPropOption = new(value); } }
|
public bool? NotrequiredNotnullableBooleanProp { get { return this.NotrequiredNotnullableBooleanPropOption; } set { this.NotrequiredNotnullableBooleanPropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of NotrequiredNotnullableDatetimeProp
|
/// Used to track the state of NotrequiredNotnullableDatetimeProp
|
||||||
@ -1536,7 +1536,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets NotrequiredNotnullableDatetimeProp
|
/// Gets or Sets NotrequiredNotnullableDatetimeProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("notrequired_notnullable_datetime_prop")]
|
[JsonPropertyName("notrequired_notnullable_datetime_prop")]
|
||||||
public DateTime? NotrequiredNotnullableDatetimeProp { get { return this. NotrequiredNotnullableDatetimePropOption; } set { this.NotrequiredNotnullableDatetimePropOption = new(value); } }
|
public DateTime? NotrequiredNotnullableDatetimeProp { get { return this.NotrequiredNotnullableDatetimePropOption; } set { this.NotrequiredNotnullableDatetimePropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of NotrequiredNotnullableStringProp
|
/// Used to track the state of NotrequiredNotnullableStringProp
|
||||||
@ -1549,7 +1549,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets NotrequiredNotnullableStringProp
|
/// Gets or Sets NotrequiredNotnullableStringProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("notrequired_notnullable_string_prop")]
|
[JsonPropertyName("notrequired_notnullable_string_prop")]
|
||||||
public string? NotrequiredNotnullableStringProp { get { return this. NotrequiredNotnullableStringPropOption; } set { this.NotrequiredNotnullableStringPropOption = new(value); } }
|
public string? NotrequiredNotnullableStringProp { get { return this.NotrequiredNotnullableStringPropOption; } set { this.NotrequiredNotnullableStringPropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of NotrequiredNotnullableUuid
|
/// Used to track the state of NotrequiredNotnullableUuid
|
||||||
@ -1563,7 +1563,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <example>72f98069-206d-4f12-9f12-3d1e525a8e84</example>
|
/// <example>72f98069-206d-4f12-9f12-3d1e525a8e84</example>
|
||||||
[JsonPropertyName("notrequired_notnullable_uuid")]
|
[JsonPropertyName("notrequired_notnullable_uuid")]
|
||||||
public Guid? NotrequiredNotnullableUuid { get { return this. NotrequiredNotnullableUuidOption; } set { this.NotrequiredNotnullableUuidOption = new(value); } }
|
public Guid? NotrequiredNotnullableUuid { get { return this.NotrequiredNotnullableUuidOption; } set { this.NotrequiredNotnullableUuidOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of NotrequiredNullableArrayOfString
|
/// Used to track the state of NotrequiredNullableArrayOfString
|
||||||
@ -1576,7 +1576,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets NotrequiredNullableArrayOfString
|
/// Gets or Sets NotrequiredNullableArrayOfString
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("notrequired_nullable_array_of_string")]
|
[JsonPropertyName("notrequired_nullable_array_of_string")]
|
||||||
public List<string>? NotrequiredNullableArrayOfString { get { return this. NotrequiredNullableArrayOfStringOption; } set { this.NotrequiredNullableArrayOfStringOption = new(value); } }
|
public List<string>? NotrequiredNullableArrayOfString { get { return this.NotrequiredNullableArrayOfStringOption; } set { this.NotrequiredNullableArrayOfStringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of NotrequiredNullableBooleanProp
|
/// Used to track the state of NotrequiredNullableBooleanProp
|
||||||
@ -1589,7 +1589,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets NotrequiredNullableBooleanProp
|
/// Gets or Sets NotrequiredNullableBooleanProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("notrequired_nullable_boolean_prop")]
|
[JsonPropertyName("notrequired_nullable_boolean_prop")]
|
||||||
public bool? NotrequiredNullableBooleanProp { get { return this. NotrequiredNullableBooleanPropOption; } set { this.NotrequiredNullableBooleanPropOption = new(value); } }
|
public bool? NotrequiredNullableBooleanProp { get { return this.NotrequiredNullableBooleanPropOption; } set { this.NotrequiredNullableBooleanPropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of NotrequiredNullableDatetimeProp
|
/// Used to track the state of NotrequiredNullableDatetimeProp
|
||||||
@ -1602,7 +1602,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets NotrequiredNullableDatetimeProp
|
/// Gets or Sets NotrequiredNullableDatetimeProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("notrequired_nullable_datetime_prop")]
|
[JsonPropertyName("notrequired_nullable_datetime_prop")]
|
||||||
public DateTime? NotrequiredNullableDatetimeProp { get { return this. NotrequiredNullableDatetimePropOption; } set { this.NotrequiredNullableDatetimePropOption = new(value); } }
|
public DateTime? NotrequiredNullableDatetimeProp { get { return this.NotrequiredNullableDatetimePropOption; } set { this.NotrequiredNullableDatetimePropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of NotrequiredNullableStringProp
|
/// Used to track the state of NotrequiredNullableStringProp
|
||||||
@ -1615,7 +1615,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets NotrequiredNullableStringProp
|
/// Gets or Sets NotrequiredNullableStringProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("notrequired_nullable_string_prop")]
|
[JsonPropertyName("notrequired_nullable_string_prop")]
|
||||||
public string? NotrequiredNullableStringProp { get { return this. NotrequiredNullableStringPropOption; } set { this.NotrequiredNullableStringPropOption = new(value); } }
|
public string? NotrequiredNullableStringProp { get { return this.NotrequiredNullableStringPropOption; } set { this.NotrequiredNullableStringPropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of NotrequiredNullableUuid
|
/// Used to track the state of NotrequiredNullableUuid
|
||||||
@ -1629,7 +1629,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <example>72f98069-206d-4f12-9f12-3d1e525a8e84</example>
|
/// <example>72f98069-206d-4f12-9f12-3d1e525a8e84</example>
|
||||||
[JsonPropertyName("notrequired_nullable_uuid")]
|
[JsonPropertyName("notrequired_nullable_uuid")]
|
||||||
public Guid? NotrequiredNullableUuid { get { return this. NotrequiredNullableUuidOption; } set { this.NotrequiredNullableUuidOption = new(value); } }
|
public Guid? NotrequiredNullableUuid { get { return this.NotrequiredNullableUuidOption; } set { this.NotrequiredNullableUuidOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -74,7 +74,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets VarReturn
|
/// Gets or Sets VarReturn
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("return")]
|
[JsonPropertyName("return")]
|
||||||
public int? VarReturn { get { return this. VarReturnOption; } set { this.VarReturnOption = new(value); } }
|
public int? VarReturn { get { return this.VarReturnOption; } set { this.VarReturnOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Unsafe
|
/// Used to track the state of Unsafe
|
||||||
@ -87,7 +87,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Unsafe
|
/// Gets or Sets Unsafe
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("unsafe")]
|
[JsonPropertyName("unsafe")]
|
||||||
public string? Unsafe { get { return this. UnsafeOption; } set { this.UnsafeOption = new(value); } }
|
public string? Unsafe { get { return this.UnsafeOption; } set { this.UnsafeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -58,7 +58,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Role
|
/// Gets or Sets Role
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("role")]
|
[JsonPropertyName("role")]
|
||||||
public RolesReportsHashRole? Role { get { return this. RoleOption; } set { this.RoleOption = new(value); } }
|
public RolesReportsHashRole? Role { get { return this.RoleOption; } set { this.RoleOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of RoleUuid
|
/// Used to track the state of RoleUuid
|
||||||
@ -71,7 +71,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets RoleUuid
|
/// Gets or Sets RoleUuid
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("role_uuid")]
|
[JsonPropertyName("role_uuid")]
|
||||||
public Guid? RoleUuid { get { return this. RoleUuidOption; } set { this.RoleUuidOption = new(value); } }
|
public Guid? RoleUuid { get { return this.RoleUuidOption; } set { this.RoleUuidOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -56,7 +56,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Name
|
/// Gets or Sets Name
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("name")]
|
[JsonPropertyName("name")]
|
||||||
public string? Name { get { return this. NameOption; } set { this.NameOption = new(value); } }
|
public string? Name { get { return this.NameOption; } set { this.NameOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -58,7 +58,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets VarSpecialModelName
|
/// Gets or Sets VarSpecialModelName
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("_special_model.name_")]
|
[JsonPropertyName("_special_model.name_")]
|
||||||
public string? VarSpecialModelName { get { return this. VarSpecialModelNameOption; } set { this.VarSpecialModelNameOption = new(value); } }
|
public string? VarSpecialModelName { get { return this.VarSpecialModelNameOption; } set { this.VarSpecialModelNameOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of SpecialPropertyName
|
/// Used to track the state of SpecialPropertyName
|
||||||
@ -71,7 +71,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets SpecialPropertyName
|
/// Gets or Sets SpecialPropertyName
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("$special[property.name]")]
|
[JsonPropertyName("$special[property.name]")]
|
||||||
public long? SpecialPropertyName { get { return this. SpecialPropertyNameOption; } set { this.SpecialPropertyNameOption = new(value); } }
|
public long? SpecialPropertyName { get { return this.SpecialPropertyNameOption; } set { this.SpecialPropertyNameOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -58,7 +58,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Id
|
/// Gets or Sets Id
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("id")]
|
[JsonPropertyName("id")]
|
||||||
public long? Id { get { return this. IdOption; } set { this.IdOption = new(value); } }
|
public long? Id { get { return this.IdOption; } set { this.IdOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Name
|
/// Used to track the state of Name
|
||||||
@ -71,7 +71,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Name
|
/// Gets or Sets Name
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("name")]
|
[JsonPropertyName("name")]
|
||||||
public string? Name { get { return this. NameOption; } set { this.NameOption = new(value); } }
|
public string? Name { get { return this.NameOption; } set { this.NameOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -56,7 +56,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Value
|
/// Gets or Sets Value
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("value")]
|
[JsonPropertyName("value")]
|
||||||
public string? Value { get { return this. ValueOption; } set { this.ValueOption = new(value); } }
|
public string? Value { get { return this.ValueOption; } set { this.ValueOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -56,7 +56,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets TestCollectionEndingWithWordList
|
/// Gets or Sets TestCollectionEndingWithWordList
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("TestCollectionEndingWithWordList")]
|
[JsonPropertyName("TestCollectionEndingWithWordList")]
|
||||||
public List<TestCollectionEndingWithWordList>? TestCollectionEndingWithWordList { get { return this. TestCollectionEndingWithWordListOption; } set { this.TestCollectionEndingWithWordListOption = new(value); } }
|
public List<TestCollectionEndingWithWordList>? TestCollectionEndingWithWordList { get { return this.TestCollectionEndingWithWordListOption; } set { this.TestCollectionEndingWithWordListOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -56,7 +56,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets SomeProperty
|
/// Gets or Sets SomeProperty
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("someProperty")]
|
[JsonPropertyName("someProperty")]
|
||||||
public string? SomeProperty { get { return this. SomePropertyOption; } set { this.SomePropertyOption = new(value); } }
|
public string? SomeProperty { get { return this.SomePropertyOption; } set { this.SomePropertyOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -79,7 +79,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. See https://github.com/OAI/OpenAPI-Specification/issues/1389</value>
|
/// <value>test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. See https://github.com/OAI/OpenAPI-Specification/issues/1389</value>
|
||||||
[JsonPropertyName("anyTypeProp")]
|
[JsonPropertyName("anyTypeProp")]
|
||||||
public Object? AnyTypeProp { get { return this. AnyTypePropOption; } set { this.AnyTypePropOption = new(value); } }
|
public Object? AnyTypeProp { get { return this.AnyTypePropOption; } set { this.AnyTypePropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of AnyTypePropNullable
|
/// Used to track the state of AnyTypePropNullable
|
||||||
@ -93,7 +93,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. The 'nullable' attribute does not change the allowed values.</value>
|
/// <value>test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. The 'nullable' attribute does not change the allowed values.</value>
|
||||||
[JsonPropertyName("anyTypePropNullable")]
|
[JsonPropertyName("anyTypePropNullable")]
|
||||||
public Object? AnyTypePropNullable { get { return this. AnyTypePropNullableOption; } set { this.AnyTypePropNullableOption = new(value); } }
|
public Object? AnyTypePropNullable { get { return this.AnyTypePropNullableOption; } set { this.AnyTypePropNullableOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Email
|
/// Used to track the state of Email
|
||||||
@ -106,7 +106,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Email
|
/// Gets or Sets Email
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("email")]
|
[JsonPropertyName("email")]
|
||||||
public string? Email { get { return this. EmailOption; } set { this.EmailOption = new(value); } }
|
public string? Email { get { return this.EmailOption; } set { this.EmailOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of FirstName
|
/// Used to track the state of FirstName
|
||||||
@ -119,7 +119,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets FirstName
|
/// Gets or Sets FirstName
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("firstName")]
|
[JsonPropertyName("firstName")]
|
||||||
public string? FirstName { get { return this. FirstNameOption; } set { this.FirstNameOption = new(value); } }
|
public string? FirstName { get { return this.FirstNameOption; } set { this.FirstNameOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Id
|
/// Used to track the state of Id
|
||||||
@ -132,7 +132,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Id
|
/// Gets or Sets Id
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("id")]
|
[JsonPropertyName("id")]
|
||||||
public long? Id { get { return this. IdOption; } set { this.IdOption = new(value); } }
|
public long? Id { get { return this.IdOption; } set { this.IdOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of LastName
|
/// Used to track the state of LastName
|
||||||
@ -145,7 +145,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets LastName
|
/// Gets or Sets LastName
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("lastName")]
|
[JsonPropertyName("lastName")]
|
||||||
public string? LastName { get { return this. LastNameOption; } set { this.LastNameOption = new(value); } }
|
public string? LastName { get { return this.LastNameOption; } set { this.LastNameOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ObjectWithNoDeclaredProps
|
/// Used to track the state of ObjectWithNoDeclaredProps
|
||||||
@ -159,7 +159,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>test code generation for objects Value must be a map of strings to values. It cannot be the 'null' value.</value>
|
/// <value>test code generation for objects Value must be a map of strings to values. It cannot be the 'null' value.</value>
|
||||||
[JsonPropertyName("objectWithNoDeclaredProps")]
|
[JsonPropertyName("objectWithNoDeclaredProps")]
|
||||||
public Object? ObjectWithNoDeclaredProps { get { return this. ObjectWithNoDeclaredPropsOption; } set { this.ObjectWithNoDeclaredPropsOption = new(value); } }
|
public Object? ObjectWithNoDeclaredProps { get { return this.ObjectWithNoDeclaredPropsOption; } set { this.ObjectWithNoDeclaredPropsOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ObjectWithNoDeclaredPropsNullable
|
/// Used to track the state of ObjectWithNoDeclaredPropsNullable
|
||||||
@ -173,7 +173,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>test code generation for nullable objects. Value must be a map of strings to values or the 'null' value.</value>
|
/// <value>test code generation for nullable objects. Value must be a map of strings to values or the 'null' value.</value>
|
||||||
[JsonPropertyName("objectWithNoDeclaredPropsNullable")]
|
[JsonPropertyName("objectWithNoDeclaredPropsNullable")]
|
||||||
public Object? ObjectWithNoDeclaredPropsNullable { get { return this. ObjectWithNoDeclaredPropsNullableOption; } set { this.ObjectWithNoDeclaredPropsNullableOption = new(value); } }
|
public Object? ObjectWithNoDeclaredPropsNullable { get { return this.ObjectWithNoDeclaredPropsNullableOption; } set { this.ObjectWithNoDeclaredPropsNullableOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Password
|
/// Used to track the state of Password
|
||||||
@ -186,7 +186,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Password
|
/// Gets or Sets Password
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("password")]
|
[JsonPropertyName("password")]
|
||||||
public string? Password { get { return this. PasswordOption; } set { this.PasswordOption = new(value); } }
|
public string? Password { get { return this.PasswordOption; } set { this.PasswordOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Phone
|
/// Used to track the state of Phone
|
||||||
@ -199,7 +199,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Phone
|
/// Gets or Sets Phone
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("phone")]
|
[JsonPropertyName("phone")]
|
||||||
public string? Phone { get { return this. PhoneOption; } set { this.PhoneOption = new(value); } }
|
public string? Phone { get { return this.PhoneOption; } set { this.PhoneOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of UserStatus
|
/// Used to track the state of UserStatus
|
||||||
@ -213,7 +213,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>User Status</value>
|
/// <value>User Status</value>
|
||||||
[JsonPropertyName("userStatus")]
|
[JsonPropertyName("userStatus")]
|
||||||
public int? UserStatus { get { return this. UserStatusOption; } set { this.UserStatusOption = new(value); } }
|
public int? UserStatus { get { return this.UserStatusOption; } set { this.UserStatusOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Username
|
/// Used to track the state of Username
|
||||||
@ -226,7 +226,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets Username
|
/// Gets or Sets Username
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("username")]
|
[JsonPropertyName("username")]
|
||||||
public string? Username { get { return this. UsernameOption; } set { this.UsernameOption = new(value); } }
|
public string? Username { get { return this.UsernameOption; } set { this.UsernameOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -66,7 +66,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets HasBaleen
|
/// Gets or Sets HasBaleen
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("hasBaleen")]
|
[JsonPropertyName("hasBaleen")]
|
||||||
public bool? HasBaleen { get { return this. HasBaleenOption; } set { this.HasBaleenOption = new(value); } }
|
public bool? HasBaleen { get { return this.HasBaleenOption; } set { this.HasBaleenOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of HasTeeth
|
/// Used to track the state of HasTeeth
|
||||||
@ -79,7 +79,7 @@ namespace UseSourceGeneration.Model
|
|||||||
/// Gets or Sets HasTeeth
|
/// Gets or Sets HasTeeth
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("hasTeeth")]
|
[JsonPropertyName("hasTeeth")]
|
||||||
public bool? HasTeeth { get { return this. HasTeethOption; } set { this.HasTeethOption = new(value); } }
|
public bool? HasTeeth { get { return this.HasTeethOption; } set { this.HasTeethOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -55,7 +55,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets ActivityOutputs
|
/// Gets or Sets ActivityOutputs
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("activity_outputs")]
|
[JsonPropertyName("activity_outputs")]
|
||||||
public Dictionary<string, List<ActivityOutputElementRepresentation>>? ActivityOutputs { get { return this. ActivityOutputsOption; } set { this.ActivityOutputsOption = new(value); } }
|
public Dictionary<string, List<ActivityOutputElementRepresentation>>? ActivityOutputs { get { return this.ActivityOutputsOption; } set { this.ActivityOutputsOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -57,7 +57,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Prop1
|
/// Gets or Sets Prop1
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("prop1")]
|
[JsonPropertyName("prop1")]
|
||||||
public string? Prop1 { get { return this. Prop1Option; } set { this.Prop1Option = new(value); } }
|
public string? Prop1 { get { return this.Prop1Option; } set { this.Prop1Option = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Prop2
|
/// Used to track the state of Prop2
|
||||||
@ -70,7 +70,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Prop2
|
/// Gets or Sets Prop2
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("prop2")]
|
[JsonPropertyName("prop2")]
|
||||||
public Object? Prop2 { get { return this. Prop2Option; } set { this.Prop2Option = new(value); } }
|
public Object? Prop2 { get { return this.Prop2Option; } set { this.Prop2Option = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -69,7 +69,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Anytype1
|
/// Gets or Sets Anytype1
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("anytype_1")]
|
[JsonPropertyName("anytype_1")]
|
||||||
public Object? Anytype1 { get { return this. Anytype1Option; } set { this.Anytype1Option = new(value); } }
|
public Object? Anytype1 { get { return this.Anytype1Option; } set { this.Anytype1Option = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of EmptyMap
|
/// Used to track the state of EmptyMap
|
||||||
@ -83,7 +83,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>an object with no declared properties and no undeclared properties, hence it's an empty map.</value>
|
/// <value>an object with no declared properties and no undeclared properties, hence it's an empty map.</value>
|
||||||
[JsonPropertyName("empty_map")]
|
[JsonPropertyName("empty_map")]
|
||||||
public Object? EmptyMap { get { return this. EmptyMapOption; } set { this.EmptyMapOption = new(value); } }
|
public Object? EmptyMap { get { return this.EmptyMapOption; } set { this.EmptyMapOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of MapOfMapProperty
|
/// Used to track the state of MapOfMapProperty
|
||||||
@ -96,7 +96,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets MapOfMapProperty
|
/// Gets or Sets MapOfMapProperty
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("map_of_map_property")]
|
[JsonPropertyName("map_of_map_property")]
|
||||||
public Dictionary<string, Dictionary<string, string>>? MapOfMapProperty { get { return this. MapOfMapPropertyOption; } set { this.MapOfMapPropertyOption = new(value); } }
|
public Dictionary<string, Dictionary<string, string>>? MapOfMapProperty { get { return this.MapOfMapPropertyOption; } set { this.MapOfMapPropertyOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of MapProperty
|
/// Used to track the state of MapProperty
|
||||||
@ -109,7 +109,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets MapProperty
|
/// Gets or Sets MapProperty
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("map_property")]
|
[JsonPropertyName("map_property")]
|
||||||
public Dictionary<string, string>? MapProperty { get { return this. MapPropertyOption; } set { this.MapPropertyOption = new(value); } }
|
public Dictionary<string, string>? MapProperty { get { return this.MapPropertyOption; } set { this.MapPropertyOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of MapWithUndeclaredPropertiesAnytype1
|
/// Used to track the state of MapWithUndeclaredPropertiesAnytype1
|
||||||
@ -122,7 +122,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets MapWithUndeclaredPropertiesAnytype1
|
/// Gets or Sets MapWithUndeclaredPropertiesAnytype1
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("map_with_undeclared_properties_anytype_1")]
|
[JsonPropertyName("map_with_undeclared_properties_anytype_1")]
|
||||||
public Object? MapWithUndeclaredPropertiesAnytype1 { get { return this. MapWithUndeclaredPropertiesAnytype1Option; } set { this.MapWithUndeclaredPropertiesAnytype1Option = new(value); } }
|
public Object? MapWithUndeclaredPropertiesAnytype1 { get { return this.MapWithUndeclaredPropertiesAnytype1Option; } set { this.MapWithUndeclaredPropertiesAnytype1Option = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of MapWithUndeclaredPropertiesAnytype2
|
/// Used to track the state of MapWithUndeclaredPropertiesAnytype2
|
||||||
@ -135,7 +135,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets MapWithUndeclaredPropertiesAnytype2
|
/// Gets or Sets MapWithUndeclaredPropertiesAnytype2
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("map_with_undeclared_properties_anytype_2")]
|
[JsonPropertyName("map_with_undeclared_properties_anytype_2")]
|
||||||
public Object? MapWithUndeclaredPropertiesAnytype2 { get { return this. MapWithUndeclaredPropertiesAnytype2Option; } set { this.MapWithUndeclaredPropertiesAnytype2Option = new(value); } }
|
public Object? MapWithUndeclaredPropertiesAnytype2 { get { return this.MapWithUndeclaredPropertiesAnytype2Option; } set { this.MapWithUndeclaredPropertiesAnytype2Option = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of MapWithUndeclaredPropertiesAnytype3
|
/// Used to track the state of MapWithUndeclaredPropertiesAnytype3
|
||||||
@ -148,7 +148,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets MapWithUndeclaredPropertiesAnytype3
|
/// Gets or Sets MapWithUndeclaredPropertiesAnytype3
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("map_with_undeclared_properties_anytype_3")]
|
[JsonPropertyName("map_with_undeclared_properties_anytype_3")]
|
||||||
public Dictionary<string, Object>? MapWithUndeclaredPropertiesAnytype3 { get { return this. MapWithUndeclaredPropertiesAnytype3Option; } set { this.MapWithUndeclaredPropertiesAnytype3Option = new(value); } }
|
public Dictionary<string, Object>? MapWithUndeclaredPropertiesAnytype3 { get { return this.MapWithUndeclaredPropertiesAnytype3Option; } set { this.MapWithUndeclaredPropertiesAnytype3Option = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of MapWithUndeclaredPropertiesString
|
/// Used to track the state of MapWithUndeclaredPropertiesString
|
||||||
@ -161,7 +161,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets MapWithUndeclaredPropertiesString
|
/// Gets or Sets MapWithUndeclaredPropertiesString
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("map_with_undeclared_properties_string")]
|
[JsonPropertyName("map_with_undeclared_properties_string")]
|
||||||
public Dictionary<string, string>? MapWithUndeclaredPropertiesString { get { return this. MapWithUndeclaredPropertiesStringOption; } set { this.MapWithUndeclaredPropertiesStringOption = new(value); } }
|
public Dictionary<string, string>? MapWithUndeclaredPropertiesString { get { return this.MapWithUndeclaredPropertiesStringOption; } set { this.MapWithUndeclaredPropertiesStringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -63,7 +63,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Color
|
/// Gets or Sets Color
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("color")]
|
[JsonPropertyName("color")]
|
||||||
public string? Color { get { return this. ColorOption; } set { this.ColorOption = new(value); } }
|
public string? Color { get { return this.ColorOption; } set { this.ColorOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -59,7 +59,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Code
|
/// Gets or Sets Code
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("code")]
|
[JsonPropertyName("code")]
|
||||||
public int? Code { get { return this. CodeOption; } set { this.CodeOption = new(value); } }
|
public int? Code { get { return this.CodeOption; } set { this.CodeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Message
|
/// Used to track the state of Message
|
||||||
@ -72,7 +72,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Message
|
/// Gets or Sets Message
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("message")]
|
[JsonPropertyName("message")]
|
||||||
public string? Message { get { return this. MessageOption; } set { this.MessageOption = new(value); } }
|
public string? Message { get { return this.MessageOption; } set { this.MessageOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Type
|
/// Used to track the state of Type
|
||||||
@ -85,7 +85,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Type
|
/// Gets or Sets Type
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("type")]
|
[JsonPropertyName("type")]
|
||||||
public string? Type { get { return this. TypeOption; } set { this.TypeOption = new(value); } }
|
public string? Type { get { return this.TypeOption; } set { this.TypeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -59,7 +59,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets ColorCode
|
/// Gets or Sets ColorCode
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("color_code")]
|
[JsonPropertyName("color_code")]
|
||||||
public string? ColorCode { get { return this. ColorCodeOption; } set { this.ColorCodeOption = new(value); } }
|
public string? ColorCode { get { return this.ColorCodeOption; } set { this.ColorCodeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Cultivar
|
/// Used to track the state of Cultivar
|
||||||
@ -72,7 +72,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Cultivar
|
/// Gets or Sets Cultivar
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("cultivar")]
|
[JsonPropertyName("cultivar")]
|
||||||
public string? Cultivar { get { return this. CultivarOption; } set { this.CultivarOption = new(value); } }
|
public string? Cultivar { get { return this.CultivarOption; } set { this.CultivarOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Origin
|
/// Used to track the state of Origin
|
||||||
@ -85,7 +85,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Origin
|
/// Gets or Sets Origin
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("origin")]
|
[JsonPropertyName("origin")]
|
||||||
public string? Origin { get { return this. OriginOption; } set { this.OriginOption = new(value); } }
|
public string? Origin { get { return this.OriginOption; } set { this.OriginOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -63,7 +63,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Mealy
|
/// Gets or Sets Mealy
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("mealy")]
|
[JsonPropertyName("mealy")]
|
||||||
public bool? Mealy { get { return this. MealyOption; } set { this.MealyOption = new(value); } }
|
public bool? Mealy { get { return this.MealyOption; } set { this.MealyOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the string presentation of the object
|
/// Returns the string presentation of the object
|
||||||
|
@ -55,7 +55,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets ArrayArrayNumber
|
/// Gets or Sets ArrayArrayNumber
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("ArrayArrayNumber")]
|
[JsonPropertyName("ArrayArrayNumber")]
|
||||||
public List<List<decimal>>? ArrayArrayNumber { get { return this. ArrayArrayNumberOption; } set { this.ArrayArrayNumberOption = new(value); } }
|
public List<List<decimal>>? ArrayArrayNumber { get { return this.ArrayArrayNumberOption; } set { this.ArrayArrayNumberOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -55,7 +55,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets ArrayNumber
|
/// Gets or Sets ArrayNumber
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("ArrayNumber")]
|
[JsonPropertyName("ArrayNumber")]
|
||||||
public List<decimal>? ArrayNumber { get { return this. ArrayNumberOption; } set { this.ArrayNumberOption = new(value); } }
|
public List<decimal>? ArrayNumber { get { return this.ArrayNumberOption; } set { this.ArrayNumberOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -59,7 +59,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets ArrayArrayOfInteger
|
/// Gets or Sets ArrayArrayOfInteger
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("array_array_of_integer")]
|
[JsonPropertyName("array_array_of_integer")]
|
||||||
public List<List<long>>? ArrayArrayOfInteger { get { return this. ArrayArrayOfIntegerOption; } set { this.ArrayArrayOfIntegerOption = new(value); } }
|
public List<List<long>>? ArrayArrayOfInteger { get { return this.ArrayArrayOfIntegerOption; } set { this.ArrayArrayOfIntegerOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ArrayArrayOfModel
|
/// Used to track the state of ArrayArrayOfModel
|
||||||
@ -72,7 +72,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets ArrayArrayOfModel
|
/// Gets or Sets ArrayArrayOfModel
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("array_array_of_model")]
|
[JsonPropertyName("array_array_of_model")]
|
||||||
public List<List<ReadOnlyFirst>>? ArrayArrayOfModel { get { return this. ArrayArrayOfModelOption; } set { this.ArrayArrayOfModelOption = new(value); } }
|
public List<List<ReadOnlyFirst>>? ArrayArrayOfModel { get { return this.ArrayArrayOfModelOption; } set { this.ArrayArrayOfModelOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ArrayOfString
|
/// Used to track the state of ArrayOfString
|
||||||
@ -85,7 +85,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets ArrayOfString
|
/// Gets or Sets ArrayOfString
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("array_of_string")]
|
[JsonPropertyName("array_of_string")]
|
||||||
public List<string>? ArrayOfString { get { return this. ArrayOfStringOption; } set { this.ArrayOfStringOption = new(value); } }
|
public List<string>? ArrayOfString { get { return this.ArrayOfStringOption; } set { this.ArrayOfStringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -55,7 +55,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets LengthCm
|
/// Gets or Sets LengthCm
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("lengthCm")]
|
[JsonPropertyName("lengthCm")]
|
||||||
public decimal? LengthCm { get { return this. LengthCmOption; } set { this.LengthCmOption = new(value); } }
|
public decimal? LengthCm { get { return this.LengthCmOption; } set { this.LengthCmOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -63,7 +63,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Sweet
|
/// Gets or Sets Sweet
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("sweet")]
|
[JsonPropertyName("sweet")]
|
||||||
public bool? Sweet { get { return this. SweetOption; } set { this.SweetOption = new(value); } }
|
public bool? Sweet { get { return this.SweetOption; } set { this.SweetOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the string presentation of the object
|
/// Returns the string presentation of the object
|
||||||
|
@ -66,7 +66,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>Name of the pet </value>
|
/// <value>Name of the pet </value>
|
||||||
[JsonPropertyName("ATT_NAME")]
|
[JsonPropertyName("ATT_NAME")]
|
||||||
public string? ATT_NAME { get { return this. ATT_NAMEOption; } set { this.ATT_NAMEOption = new(value); } }
|
public string? ATT_NAME { get { return this.ATT_NAMEOption; } set { this.ATT_NAMEOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of CapitalCamel
|
/// Used to track the state of CapitalCamel
|
||||||
@ -79,7 +79,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets CapitalCamel
|
/// Gets or Sets CapitalCamel
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("CapitalCamel")]
|
[JsonPropertyName("CapitalCamel")]
|
||||||
public string? CapitalCamel { get { return this. CapitalCamelOption; } set { this.CapitalCamelOption = new(value); } }
|
public string? CapitalCamel { get { return this.CapitalCamelOption; } set { this.CapitalCamelOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of CapitalSnake
|
/// Used to track the state of CapitalSnake
|
||||||
@ -92,7 +92,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets CapitalSnake
|
/// Gets or Sets CapitalSnake
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("Capital_Snake")]
|
[JsonPropertyName("Capital_Snake")]
|
||||||
public string? CapitalSnake { get { return this. CapitalSnakeOption; } set { this.CapitalSnakeOption = new(value); } }
|
public string? CapitalSnake { get { return this.CapitalSnakeOption; } set { this.CapitalSnakeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of SCAETHFlowPoints
|
/// Used to track the state of SCAETHFlowPoints
|
||||||
@ -105,7 +105,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets SCAETHFlowPoints
|
/// Gets or Sets SCAETHFlowPoints
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("SCA_ETH_Flow_Points")]
|
[JsonPropertyName("SCA_ETH_Flow_Points")]
|
||||||
public string? SCAETHFlowPoints { get { return this. SCAETHFlowPointsOption; } set { this.SCAETHFlowPointsOption = new(value); } }
|
public string? SCAETHFlowPoints { get { return this.SCAETHFlowPointsOption; } set { this.SCAETHFlowPointsOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of SmallCamel
|
/// Used to track the state of SmallCamel
|
||||||
@ -118,7 +118,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets SmallCamel
|
/// Gets or Sets SmallCamel
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("smallCamel")]
|
[JsonPropertyName("smallCamel")]
|
||||||
public string? SmallCamel { get { return this. SmallCamelOption; } set { this.SmallCamelOption = new(value); } }
|
public string? SmallCamel { get { return this.SmallCamelOption; } set { this.SmallCamelOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of SmallSnake
|
/// Used to track the state of SmallSnake
|
||||||
@ -131,7 +131,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets SmallSnake
|
/// Gets or Sets SmallSnake
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("small_Snake")]
|
[JsonPropertyName("small_Snake")]
|
||||||
public string? SmallSnake { get { return this. SmallSnakeOption; } set { this.SmallSnakeOption = new(value); } }
|
public string? SmallSnake { get { return this.SmallSnakeOption; } set { this.SmallSnakeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -57,7 +57,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Declawed
|
/// Gets or Sets Declawed
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("declawed")]
|
[JsonPropertyName("declawed")]
|
||||||
public bool? Declawed { get { return this. DeclawedOption; } set { this.DeclawedOption = new(value); } }
|
public bool? Declawed { get { return this.DeclawedOption; } set { this.DeclawedOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the string presentation of the object
|
/// Returns the string presentation of the object
|
||||||
|
@ -57,7 +57,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Id
|
/// Gets or Sets Id
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("id")]
|
[JsonPropertyName("id")]
|
||||||
public long? Id { get { return this. IdOption; } set { this.IdOption = new(value); } }
|
public long? Id { get { return this.IdOption; } set { this.IdOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets Name
|
/// Gets or Sets Name
|
||||||
|
@ -115,7 +115,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Name
|
/// Gets or Sets Name
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("name")]
|
[JsonPropertyName("name")]
|
||||||
public string? Name { get { return this. NameOption; } set { this.NameOption = new(value); } }
|
public string? Name { get { return this.NameOption; } set { this.NameOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the string presentation of the object
|
/// Returns the string presentation of the object
|
||||||
|
@ -55,7 +55,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Class
|
/// Gets or Sets Class
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("_class")]
|
[JsonPropertyName("_class")]
|
||||||
public string? Class { get { return this. ClassOption; } set { this.ClassOption = new(value); } }
|
public string? Class { get { return this.ClassOption; } set { this.ClassOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -56,7 +56,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <example>Fri Jul 21 00:00:00 UTC 2017</example>
|
/// <example>Fri Jul 21 00:00:00 UTC 2017</example>
|
||||||
[JsonPropertyName("dateOnlyProperty")]
|
[JsonPropertyName("dateOnlyProperty")]
|
||||||
public DateOnly? DateOnlyProperty { get { return this. DateOnlyPropertyOption; } set { this.DateOnlyPropertyOption = new(value); } }
|
public DateOnly? DateOnlyProperty { get { return this.DateOnlyPropertyOption; } set { this.DateOnlyPropertyOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -55,7 +55,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Name
|
/// Gets or Sets Name
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("name")]
|
[JsonPropertyName("name")]
|
||||||
public string? Name { get { return this. NameOption; } set { this.NameOption = new(value); } }
|
public string? Name { get { return this.NameOption; } set { this.NameOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -57,7 +57,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Breed
|
/// Gets or Sets Breed
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("breed")]
|
[JsonPropertyName("breed")]
|
||||||
public string? Breed { get { return this. BreedOption; } set { this.BreedOption = new(value); } }
|
public string? Breed { get { return this.BreedOption; } set { this.BreedOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the string presentation of the object
|
/// Returns the string presentation of the object
|
||||||
|
@ -61,7 +61,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets MainShape
|
/// Gets or Sets MainShape
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("mainShape")]
|
[JsonPropertyName("mainShape")]
|
||||||
public Shape? MainShape { get { return this. MainShapeOption; } set { this.MainShapeOption = new(value); } }
|
public Shape? MainShape { get { return this.MainShapeOption; } set { this.MainShapeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of NullableShape
|
/// Used to track the state of NullableShape
|
||||||
@ -74,7 +74,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets NullableShape
|
/// Gets or Sets NullableShape
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("nullableShape")]
|
[JsonPropertyName("nullableShape")]
|
||||||
public NullableShape? NullableShape { get { return this. NullableShapeOption; } set { this.NullableShapeOption = new(value); } }
|
public NullableShape? NullableShape { get { return this.NullableShapeOption; } set { this.NullableShapeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ShapeOrNull
|
/// Used to track the state of ShapeOrNull
|
||||||
@ -87,7 +87,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets ShapeOrNull
|
/// Gets or Sets ShapeOrNull
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("shapeOrNull")]
|
[JsonPropertyName("shapeOrNull")]
|
||||||
public ShapeOrNull? ShapeOrNull { get { return this. ShapeOrNullOption; } set { this.ShapeOrNullOption = new(value); } }
|
public ShapeOrNull? ShapeOrNull { get { return this.ShapeOrNullOption; } set { this.ShapeOrNullOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Shapes
|
/// Used to track the state of Shapes
|
||||||
@ -100,7 +100,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Shapes
|
/// Gets or Sets Shapes
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("shapes")]
|
[JsonPropertyName("shapes")]
|
||||||
public List<Shape>? Shapes { get { return this. ShapesOption; } set { this.ShapesOption = new(value); } }
|
public List<Shape>? Shapes { get { return this.ShapesOption; } set { this.ShapesOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -202,7 +202,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets ArrayEnum
|
/// Gets or Sets ArrayEnum
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("array_enum")]
|
[JsonPropertyName("array_enum")]
|
||||||
public List<EnumArrays.ArrayEnumEnum>? ArrayEnum { get { return this. ArrayEnumOption; } set { this.ArrayEnumOption = new(value); } }
|
public List<EnumArrays.ArrayEnumEnum>? ArrayEnum { get { return this.ArrayEnumOption; } set { this.ArrayEnumOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -56,7 +56,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>Test capitalization</value>
|
/// <value>Test capitalization</value>
|
||||||
[JsonPropertyName("sourceURI")]
|
[JsonPropertyName("sourceURI")]
|
||||||
public string? SourceURI { get { return this. SourceURIOption; } set { this.SourceURIOption = new(value); } }
|
public string? SourceURI { get { return this.SourceURIOption; } set { this.SourceURIOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -57,7 +57,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets File
|
/// Gets or Sets File
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("file")]
|
[JsonPropertyName("file")]
|
||||||
public File? File { get { return this. FileOption; } set { this.FileOption = new(value); } }
|
public File? File { get { return this.FileOption; } set { this.FileOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Files
|
/// Used to track the state of Files
|
||||||
@ -70,7 +70,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Files
|
/// Gets or Sets Files
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("files")]
|
[JsonPropertyName("files")]
|
||||||
public List<File>? Files { get { return this. FilesOption; } set { this.FilesOption = new(value); } }
|
public List<File>? Files { get { return this.FilesOption; } set { this.FilesOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -55,7 +55,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Bar
|
/// Gets or Sets Bar
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("bar")]
|
[JsonPropertyName("bar")]
|
||||||
public string? Bar { get { return this. BarOption; } set { this.BarOption = new(value); } }
|
public string? Bar { get { return this.BarOption; } set { this.BarOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -55,7 +55,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets String
|
/// Gets or Sets String
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("string")]
|
[JsonPropertyName("string")]
|
||||||
public Foo? String { get { return this. StringOption; } set { this.StringOption = new(value); } }
|
public Foo? String { get { return this.StringOption; } set { this.StringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -116,7 +116,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Binary
|
/// Gets or Sets Binary
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("binary")]
|
[JsonPropertyName("binary")]
|
||||||
public System.IO.Stream? Binary { get { return this. BinaryOption; } set { this.BinaryOption = new(value); } }
|
public System.IO.Stream? Binary { get { return this.BinaryOption; } set { this.BinaryOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of DateTime
|
/// Used to track the state of DateTime
|
||||||
@ -130,7 +130,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <example>2007-12-03T10:15:30+01:00</example>
|
/// <example>2007-12-03T10:15:30+01:00</example>
|
||||||
[JsonPropertyName("dateTime")]
|
[JsonPropertyName("dateTime")]
|
||||||
public DateTime? DateTime { get { return this. DateTimeOption; } set { this.DateTimeOption = new(value); } }
|
public DateTime? DateTime { get { return this.DateTimeOption; } set { this.DateTimeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Decimal
|
/// Used to track the state of Decimal
|
||||||
@ -143,7 +143,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Decimal
|
/// Gets or Sets Decimal
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("decimal")]
|
[JsonPropertyName("decimal")]
|
||||||
public decimal? Decimal { get { return this. DecimalOption; } set { this.DecimalOption = new(value); } }
|
public decimal? Decimal { get { return this.DecimalOption; } set { this.DecimalOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Double
|
/// Used to track the state of Double
|
||||||
@ -156,7 +156,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Double
|
/// Gets or Sets Double
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("double")]
|
[JsonPropertyName("double")]
|
||||||
public double? Double { get { return this. DoubleOption; } set { this.DoubleOption = new(value); } }
|
public double? Double { get { return this.DoubleOption; } set { this.DoubleOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Float
|
/// Used to track the state of Float
|
||||||
@ -169,7 +169,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Float
|
/// Gets or Sets Float
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("float")]
|
[JsonPropertyName("float")]
|
||||||
public float? Float { get { return this. FloatOption; } set { this.FloatOption = new(value); } }
|
public float? Float { get { return this.FloatOption; } set { this.FloatOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Int32
|
/// Used to track the state of Int32
|
||||||
@ -182,7 +182,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Int32
|
/// Gets or Sets Int32
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("int32")]
|
[JsonPropertyName("int32")]
|
||||||
public int? Int32 { get { return this. Int32Option; } set { this.Int32Option = new(value); } }
|
public int? Int32 { get { return this.Int32Option; } set { this.Int32Option = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Int64
|
/// Used to track the state of Int64
|
||||||
@ -195,7 +195,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Int64
|
/// Gets or Sets Int64
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("int64")]
|
[JsonPropertyName("int64")]
|
||||||
public long? Int64 { get { return this. Int64Option; } set { this.Int64Option = new(value); } }
|
public long? Int64 { get { return this.Int64Option; } set { this.Int64Option = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Integer
|
/// Used to track the state of Integer
|
||||||
@ -208,7 +208,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Integer
|
/// Gets or Sets Integer
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("integer")]
|
[JsonPropertyName("integer")]
|
||||||
public int? Integer { get { return this. IntegerOption; } set { this.IntegerOption = new(value); } }
|
public int? Integer { get { return this.IntegerOption; } set { this.IntegerOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of PatternWithBackslash
|
/// Used to track the state of PatternWithBackslash
|
||||||
@ -222,7 +222,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>None</value>
|
/// <value>None</value>
|
||||||
[JsonPropertyName("pattern_with_backslash")]
|
[JsonPropertyName("pattern_with_backslash")]
|
||||||
public string? PatternWithBackslash { get { return this. PatternWithBackslashOption; } set { this.PatternWithBackslashOption = new(value); } }
|
public string? PatternWithBackslash { get { return this.PatternWithBackslashOption; } set { this.PatternWithBackslashOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of PatternWithDigits
|
/// Used to track the state of PatternWithDigits
|
||||||
@ -236,7 +236,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>A string that is a 10 digit number. Can have leading zeros.</value>
|
/// <value>A string that is a 10 digit number. Can have leading zeros.</value>
|
||||||
[JsonPropertyName("pattern_with_digits")]
|
[JsonPropertyName("pattern_with_digits")]
|
||||||
public string? PatternWithDigits { get { return this. PatternWithDigitsOption; } set { this.PatternWithDigitsOption = new(value); } }
|
public string? PatternWithDigits { get { return this.PatternWithDigitsOption; } set { this.PatternWithDigitsOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of PatternWithDigitsAndDelimiter
|
/// Used to track the state of PatternWithDigitsAndDelimiter
|
||||||
@ -250,7 +250,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01.</value>
|
/// <value>A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01.</value>
|
||||||
[JsonPropertyName("pattern_with_digits_and_delimiter")]
|
[JsonPropertyName("pattern_with_digits_and_delimiter")]
|
||||||
public string? PatternWithDigitsAndDelimiter { get { return this. PatternWithDigitsAndDelimiterOption; } set { this.PatternWithDigitsAndDelimiterOption = new(value); } }
|
public string? PatternWithDigitsAndDelimiter { get { return this.PatternWithDigitsAndDelimiterOption; } set { this.PatternWithDigitsAndDelimiterOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of String
|
/// Used to track the state of String
|
||||||
@ -263,7 +263,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets String
|
/// Gets or Sets String
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("string")]
|
[JsonPropertyName("string")]
|
||||||
public string? String { get { return this. StringOption; } set { this.StringOption = new(value); } }
|
public string? String { get { return this.StringOption; } set { this.StringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of UnsignedInteger
|
/// Used to track the state of UnsignedInteger
|
||||||
@ -276,7 +276,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets UnsignedInteger
|
/// Gets or Sets UnsignedInteger
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("unsigned_integer")]
|
[JsonPropertyName("unsigned_integer")]
|
||||||
public uint? UnsignedInteger { get { return this. UnsignedIntegerOption; } set { this.UnsignedIntegerOption = new(value); } }
|
public uint? UnsignedInteger { get { return this.UnsignedIntegerOption; } set { this.UnsignedIntegerOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of UnsignedLong
|
/// Used to track the state of UnsignedLong
|
||||||
@ -289,7 +289,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets UnsignedLong
|
/// Gets or Sets UnsignedLong
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("unsigned_long")]
|
[JsonPropertyName("unsigned_long")]
|
||||||
public ulong? UnsignedLong { get { return this. UnsignedLongOption; } set { this.UnsignedLongOption = new(value); } }
|
public ulong? UnsignedLong { get { return this.UnsignedLongOption; } set { this.UnsignedLongOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Uuid
|
/// Used to track the state of Uuid
|
||||||
@ -303,7 +303,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <example>72f98069-206d-4f12-9f12-3d1e525a8e84</example>
|
/// <example>72f98069-206d-4f12-9f12-3d1e525a8e84</example>
|
||||||
[JsonPropertyName("uuid")]
|
[JsonPropertyName("uuid")]
|
||||||
public Guid? Uuid { get { return this. UuidOption; } set { this.UuidOption = new(value); } }
|
public Guid? Uuid { get { return this.UuidOption; } set { this.UuidOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -78,7 +78,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Color
|
/// Gets or Sets Color
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("color")]
|
[JsonPropertyName("color")]
|
||||||
public string? Color { get { return this. ColorOption; } set { this.ColorOption = new(value); } }
|
public string? Color { get { return this.ColorOption; } set { this.ColorOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the string presentation of the object
|
/// Returns the string presentation of the object
|
||||||
|
@ -82,7 +82,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Color
|
/// Gets or Sets Color
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("color")]
|
[JsonPropertyName("color")]
|
||||||
public string? Color { get { return this. ColorOption; } set { this.ColorOption = new(value); } }
|
public string? Color { get { return this.ColorOption; } set { this.ColorOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the string presentation of the object
|
/// Returns the string presentation of the object
|
||||||
|
@ -57,7 +57,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Bar
|
/// Gets or Sets Bar
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("bar")]
|
[JsonPropertyName("bar")]
|
||||||
public string? Bar { get { return this. BarOption; } }
|
public string? Bar { get { return this.BarOption; } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Foo
|
/// Used to track the state of Foo
|
||||||
@ -70,7 +70,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Foo
|
/// Gets or Sets Foo
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("foo")]
|
[JsonPropertyName("foo")]
|
||||||
public string? Foo { get { return this. FooOption; } }
|
public string? Foo { get { return this.FooOption; } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -55,7 +55,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets NullableMessage
|
/// Gets or Sets NullableMessage
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("NullableMessage")]
|
[JsonPropertyName("NullableMessage")]
|
||||||
public string? NullableMessage { get { return this. NullableMessageOption; } set { this.NullableMessageOption = new(value); } }
|
public string? NullableMessage { get { return this.NullableMessageOption; } set { this.NullableMessageOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -55,7 +55,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Var123List
|
/// Gets or Sets Var123List
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("123-list")]
|
[JsonPropertyName("123-list")]
|
||||||
public string? Var123List { get { return this. Var123ListOption; } set { this.Var123ListOption = new(value); } }
|
public string? Var123List { get { return this.Var123ListOption; } set { this.Var123ListOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -57,7 +57,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets EscapedLiteralString
|
/// Gets or Sets EscapedLiteralString
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("escapedLiteralString")]
|
[JsonPropertyName("escapedLiteralString")]
|
||||||
public string? EscapedLiteralString { get { return this. EscapedLiteralStringOption; } set { this.EscapedLiteralStringOption = new(value); } }
|
public string? EscapedLiteralString { get { return this.EscapedLiteralStringOption; } set { this.EscapedLiteralStringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of UnescapedLiteralString
|
/// Used to track the state of UnescapedLiteralString
|
||||||
@ -70,7 +70,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets UnescapedLiteralString
|
/// Gets or Sets UnescapedLiteralString
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("unescapedLiteralString")]
|
[JsonPropertyName("unescapedLiteralString")]
|
||||||
public string? UnescapedLiteralString { get { return this. UnescapedLiteralStringOption; } set { this.UnescapedLiteralStringOption = new(value); } }
|
public string? UnescapedLiteralString { get { return this.UnescapedLiteralStringOption; } set { this.UnescapedLiteralStringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -127,7 +127,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets DirectMap
|
/// Gets or Sets DirectMap
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("direct_map")]
|
[JsonPropertyName("direct_map")]
|
||||||
public Dictionary<string, bool>? DirectMap { get { return this. DirectMapOption; } set { this.DirectMapOption = new(value); } }
|
public Dictionary<string, bool>? DirectMap { get { return this.DirectMapOption; } set { this.DirectMapOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of IndirectMap
|
/// Used to track the state of IndirectMap
|
||||||
@ -140,7 +140,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets IndirectMap
|
/// Gets or Sets IndirectMap
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("indirect_map")]
|
[JsonPropertyName("indirect_map")]
|
||||||
public Dictionary<string, bool>? IndirectMap { get { return this. IndirectMapOption; } set { this.IndirectMapOption = new(value); } }
|
public Dictionary<string, bool>? IndirectMap { get { return this.IndirectMapOption; } set { this.IndirectMapOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of MapMapOfString
|
/// Used to track the state of MapMapOfString
|
||||||
@ -153,7 +153,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets MapMapOfString
|
/// Gets or Sets MapMapOfString
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("map_map_of_string")]
|
[JsonPropertyName("map_map_of_string")]
|
||||||
public Dictionary<string, Dictionary<string, string>>? MapMapOfString { get { return this. MapMapOfStringOption; } set { this.MapMapOfStringOption = new(value); } }
|
public Dictionary<string, Dictionary<string, string>>? MapMapOfString { get { return this.MapMapOfStringOption; } set { this.MapMapOfStringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of MapOfEnumString
|
/// Used to track the state of MapOfEnumString
|
||||||
@ -166,7 +166,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets MapOfEnumString
|
/// Gets or Sets MapOfEnumString
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("map_of_enum_string")]
|
[JsonPropertyName("map_of_enum_string")]
|
||||||
public Dictionary<string, MapTest.InnerEnum>? MapOfEnumString { get { return this. MapOfEnumStringOption; } set { this.MapOfEnumStringOption = new(value); } }
|
public Dictionary<string, MapTest.InnerEnum>? MapOfEnumString { get { return this.MapOfEnumStringOption; } set { this.MapOfEnumStringOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -61,7 +61,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets DateTime
|
/// Gets or Sets DateTime
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("dateTime")]
|
[JsonPropertyName("dateTime")]
|
||||||
public DateTime? DateTime { get { return this. DateTimeOption; } set { this.DateTimeOption = new(value); } }
|
public DateTime? DateTime { get { return this.DateTimeOption; } set { this.DateTimeOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Map
|
/// Used to track the state of Map
|
||||||
@ -74,7 +74,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Map
|
/// Gets or Sets Map
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("map")]
|
[JsonPropertyName("map")]
|
||||||
public Dictionary<string, Animal>? Map { get { return this. MapOption; } set { this.MapOption = new(value); } }
|
public Dictionary<string, Animal>? Map { get { return this.MapOption; } set { this.MapOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Uuid
|
/// Used to track the state of Uuid
|
||||||
@ -87,7 +87,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Uuid
|
/// Gets or Sets Uuid
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("uuid")]
|
[JsonPropertyName("uuid")]
|
||||||
public Guid? Uuid { get { return this. UuidOption; } set { this.UuidOption = new(value); } }
|
public Guid? Uuid { get { return this.UuidOption; } set { this.UuidOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of UuidWithPattern
|
/// Used to track the state of UuidWithPattern
|
||||||
@ -100,7 +100,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets UuidWithPattern
|
/// Gets or Sets UuidWithPattern
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("uuid_with_pattern")]
|
[JsonPropertyName("uuid_with_pattern")]
|
||||||
public Guid? UuidWithPattern { get { return this. UuidWithPatternOption; } set { this.UuidWithPatternOption = new(value); } }
|
public Guid? UuidWithPattern { get { return this.UuidWithPatternOption; } set { this.UuidWithPatternOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -57,7 +57,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Class
|
/// Gets or Sets Class
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("class")]
|
[JsonPropertyName("class")]
|
||||||
public string? Class { get { return this. ClassOption; } set { this.ClassOption = new(value); } }
|
public string? Class { get { return this.ClassOption; } set { this.ClassOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Name
|
/// Used to track the state of Name
|
||||||
@ -70,7 +70,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Name
|
/// Gets or Sets Name
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("name")]
|
[JsonPropertyName("name")]
|
||||||
public int? Name { get { return this. NameOption; } set { this.NameOption = new(value); } }
|
public int? Name { get { return this.NameOption; } set { this.NameOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -55,7 +55,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets VarClient
|
/// Gets or Sets VarClient
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("client")]
|
[JsonPropertyName("client")]
|
||||||
public string? VarClient { get { return this. VarClientOption; } set { this.VarClientOption = new(value); } }
|
public string? VarClient { get { return this.VarClientOption; } set { this.VarClientOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -67,7 +67,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Property
|
/// Gets or Sets Property
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("property")]
|
[JsonPropertyName("property")]
|
||||||
public string? Property { get { return this. PropertyOption; } set { this.PropertyOption = new(value); } }
|
public string? Property { get { return this.PropertyOption; } set { this.PropertyOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of SnakeCase
|
/// Used to track the state of SnakeCase
|
||||||
@ -80,7 +80,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets SnakeCase
|
/// Gets or Sets SnakeCase
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("snake_case")]
|
[JsonPropertyName("snake_case")]
|
||||||
public int? SnakeCase { get { return this. SnakeCaseOption; } }
|
public int? SnakeCase { get { return this.SnakeCaseOption; } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Var123Number
|
/// Used to track the state of Var123Number
|
||||||
@ -93,7 +93,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Var123Number
|
/// Gets or Sets Var123Number
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("123Number")]
|
[JsonPropertyName("123Number")]
|
||||||
public int? Var123Number { get { return this. Var123NumberOption; } }
|
public int? Var123Number { get { return this.Var123NumberOption; } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -77,7 +77,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets ArrayAndItemsNullableProp
|
/// Gets or Sets ArrayAndItemsNullableProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("array_and_items_nullable_prop")]
|
[JsonPropertyName("array_and_items_nullable_prop")]
|
||||||
public List<Object>? ArrayAndItemsNullableProp { get { return this. ArrayAndItemsNullablePropOption; } set { this.ArrayAndItemsNullablePropOption = new(value); } }
|
public List<Object>? ArrayAndItemsNullableProp { get { return this.ArrayAndItemsNullablePropOption; } set { this.ArrayAndItemsNullablePropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ArrayItemsNullable
|
/// Used to track the state of ArrayItemsNullable
|
||||||
@ -90,7 +90,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets ArrayItemsNullable
|
/// Gets or Sets ArrayItemsNullable
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("array_items_nullable")]
|
[JsonPropertyName("array_items_nullable")]
|
||||||
public List<Object>? ArrayItemsNullable { get { return this. ArrayItemsNullableOption; } set { this.ArrayItemsNullableOption = new(value); } }
|
public List<Object>? ArrayItemsNullable { get { return this.ArrayItemsNullableOption; } set { this.ArrayItemsNullableOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ArrayNullableProp
|
/// Used to track the state of ArrayNullableProp
|
||||||
@ -103,7 +103,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets ArrayNullableProp
|
/// Gets or Sets ArrayNullableProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("array_nullable_prop")]
|
[JsonPropertyName("array_nullable_prop")]
|
||||||
public List<Object>? ArrayNullableProp { get { return this. ArrayNullablePropOption; } set { this.ArrayNullablePropOption = new(value); } }
|
public List<Object>? ArrayNullableProp { get { return this.ArrayNullablePropOption; } set { this.ArrayNullablePropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of BooleanProp
|
/// Used to track the state of BooleanProp
|
||||||
@ -116,7 +116,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets BooleanProp
|
/// Gets or Sets BooleanProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("boolean_prop")]
|
[JsonPropertyName("boolean_prop")]
|
||||||
public bool? BooleanProp { get { return this. BooleanPropOption; } set { this.BooleanPropOption = new(value); } }
|
public bool? BooleanProp { get { return this.BooleanPropOption; } set { this.BooleanPropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of DateProp
|
/// Used to track the state of DateProp
|
||||||
@ -129,7 +129,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets DateProp
|
/// Gets or Sets DateProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("date_prop")]
|
[JsonPropertyName("date_prop")]
|
||||||
public DateOnly? DateProp { get { return this. DatePropOption; } set { this.DatePropOption = new(value); } }
|
public DateOnly? DateProp { get { return this.DatePropOption; } set { this.DatePropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of DatetimeProp
|
/// Used to track the state of DatetimeProp
|
||||||
@ -142,7 +142,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets DatetimeProp
|
/// Gets or Sets DatetimeProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("datetime_prop")]
|
[JsonPropertyName("datetime_prop")]
|
||||||
public DateTime? DatetimeProp { get { return this. DatetimePropOption; } set { this.DatetimePropOption = new(value); } }
|
public DateTime? DatetimeProp { get { return this.DatetimePropOption; } set { this.DatetimePropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of IntegerProp
|
/// Used to track the state of IntegerProp
|
||||||
@ -155,7 +155,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets IntegerProp
|
/// Gets or Sets IntegerProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("integer_prop")]
|
[JsonPropertyName("integer_prop")]
|
||||||
public int? IntegerProp { get { return this. IntegerPropOption; } set { this.IntegerPropOption = new(value); } }
|
public int? IntegerProp { get { return this.IntegerPropOption; } set { this.IntegerPropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of NumberProp
|
/// Used to track the state of NumberProp
|
||||||
@ -168,7 +168,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets NumberProp
|
/// Gets or Sets NumberProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("number_prop")]
|
[JsonPropertyName("number_prop")]
|
||||||
public decimal? NumberProp { get { return this. NumberPropOption; } set { this.NumberPropOption = new(value); } }
|
public decimal? NumberProp { get { return this.NumberPropOption; } set { this.NumberPropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ObjectAndItemsNullableProp
|
/// Used to track the state of ObjectAndItemsNullableProp
|
||||||
@ -181,7 +181,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets ObjectAndItemsNullableProp
|
/// Gets or Sets ObjectAndItemsNullableProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("object_and_items_nullable_prop")]
|
[JsonPropertyName("object_and_items_nullable_prop")]
|
||||||
public Dictionary<string, Object>? ObjectAndItemsNullableProp { get { return this. ObjectAndItemsNullablePropOption; } set { this.ObjectAndItemsNullablePropOption = new(value); } }
|
public Dictionary<string, Object>? ObjectAndItemsNullableProp { get { return this.ObjectAndItemsNullablePropOption; } set { this.ObjectAndItemsNullablePropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ObjectItemsNullable
|
/// Used to track the state of ObjectItemsNullable
|
||||||
@ -194,7 +194,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets ObjectItemsNullable
|
/// Gets or Sets ObjectItemsNullable
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("object_items_nullable")]
|
[JsonPropertyName("object_items_nullable")]
|
||||||
public Dictionary<string, Object>? ObjectItemsNullable { get { return this. ObjectItemsNullableOption; } set { this.ObjectItemsNullableOption = new(value); } }
|
public Dictionary<string, Object>? ObjectItemsNullable { get { return this.ObjectItemsNullableOption; } set { this.ObjectItemsNullableOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of ObjectNullableProp
|
/// Used to track the state of ObjectNullableProp
|
||||||
@ -207,7 +207,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets ObjectNullableProp
|
/// Gets or Sets ObjectNullableProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("object_nullable_prop")]
|
[JsonPropertyName("object_nullable_prop")]
|
||||||
public Dictionary<string, Object>? ObjectNullableProp { get { return this. ObjectNullablePropOption; } set { this.ObjectNullablePropOption = new(value); } }
|
public Dictionary<string, Object>? ObjectNullableProp { get { return this.ObjectNullablePropOption; } set { this.ObjectNullablePropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of StringProp
|
/// Used to track the state of StringProp
|
||||||
@ -220,7 +220,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets StringProp
|
/// Gets or Sets StringProp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("string_prop")]
|
[JsonPropertyName("string_prop")]
|
||||||
public string? StringProp { get { return this. StringPropOption; } set { this.StringPropOption = new(value); } }
|
public string? StringProp { get { return this.StringPropOption; } set { this.StringPropOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -56,7 +56,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <example>72f98069-206d-4f12-9f12-3d1e525a8e84</example>
|
/// <example>72f98069-206d-4f12-9f12-3d1e525a8e84</example>
|
||||||
[JsonPropertyName("uuid")]
|
[JsonPropertyName("uuid")]
|
||||||
public Guid? Uuid { get { return this. UuidOption; } set { this.UuidOption = new(value); } }
|
public Guid? Uuid { get { return this.UuidOption; } set { this.UuidOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -55,7 +55,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets JustNumber
|
/// Gets or Sets JustNumber
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("JustNumber")]
|
[JsonPropertyName("JustNumber")]
|
||||||
public decimal? JustNumber { get { return this. JustNumberOption; } set { this.JustNumberOption = new(value); } }
|
public decimal? JustNumber { get { return this.JustNumberOption; } set { this.JustNumberOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
@ -62,7 +62,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("bars")]
|
[JsonPropertyName("bars")]
|
||||||
[Obsolete]
|
[Obsolete]
|
||||||
public List<string>? Bars { get { return this. BarsOption; } set { this.BarsOption = new(value); } }
|
public List<string>? Bars { get { return this.BarsOption; } set { this.BarsOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of DeprecatedRef
|
/// Used to track the state of DeprecatedRef
|
||||||
@ -76,7 +76,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("deprecatedRef")]
|
[JsonPropertyName("deprecatedRef")]
|
||||||
[Obsolete]
|
[Obsolete]
|
||||||
public DeprecatedObject? DeprecatedRef { get { return this. DeprecatedRefOption; } set { this.DeprecatedRefOption = new(value); } }
|
public DeprecatedObject? DeprecatedRef { get { return this.DeprecatedRefOption; } set { this.DeprecatedRefOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Id
|
/// Used to track the state of Id
|
||||||
@ -90,7 +90,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("id")]
|
[JsonPropertyName("id")]
|
||||||
[Obsolete]
|
[Obsolete]
|
||||||
public decimal? Id { get { return this. IdOption; } set { this.IdOption = new(value); } }
|
public decimal? Id { get { return this.IdOption; } set { this.IdOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to track the state of Uuid
|
/// Used to track the state of Uuid
|
||||||
@ -103,7 +103,7 @@ namespace Org.OpenAPITools.Model
|
|||||||
/// Gets or Sets Uuid
|
/// Gets or Sets Uuid
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("uuid")]
|
[JsonPropertyName("uuid")]
|
||||||
public string? Uuid { get { return this. UuidOption; } set { this.UuidOption = new(value); } }
|
public string? Uuid { get { return this.UuidOption; } set { this.UuidOption = new(value); } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or Sets additional properties
|
/// Gets or Sets additional properties
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user