mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-03-10 08:31:23 +00:00
fixed format of Date serialization (#14616)
This commit is contained in:
@@ -3,6 +3,15 @@
|
||||
/// </summary>
|
||||
{{>visibility}} class {{classname}}JsonConverter : JsonConverter<{{classname}}>
|
||||
{
|
||||
{{#allVars}}
|
||||
{{#isDate}}
|
||||
/// <summary>
|
||||
/// The format to use to serialize {{name}}
|
||||
/// </summary>
|
||||
public string {{name}}Format { get; set; } = "yyyy-MM-dd";
|
||||
|
||||
{{/isDate}}
|
||||
{{/allVars}}
|
||||
/// <summary>
|
||||
/// A Json reader.
|
||||
/// </summary>
|
||||
@@ -208,8 +217,15 @@
|
||||
{{/isNumeric}}
|
||||
{{/isEnum}}
|
||||
{{#isDate}}
|
||||
writer.WritePropertyName("{{baseName}}");
|
||||
JsonSerializer.Serialize(writer, {{#lambda.camelcase_param}}{{classname}}{{/lambda.camelcase_param}}.{{name}}, jsonSerializerOptions);
|
||||
{{#isNullable}}
|
||||
if ({{#lambda.camelcase_param}}{{classname}}{{/lambda.camelcase_param}}.{{name}} != null)
|
||||
writer.WriteString("{{baseName}}", {{#lambda.camelcase_param}}{{classname}}{{/lambda.camelcase_param}}.{{name}}.Value.ToString(this.{{name}}Format));
|
||||
else
|
||||
writer.WriteNull("{{baseName}}");
|
||||
{{/isNullable}}
|
||||
{{^isNullable}}
|
||||
writer.WriteString("{{baseName}}", {{#lambda.camelcase_param}}{{classname}}{{/lambda.camelcase_param}}.{{name}}.ToString(this.{{name}}Format));
|
||||
{{/isNullable}}
|
||||
{{/isDate}}
|
||||
{{#isDateTime}}
|
||||
writer.WritePropertyName("{{baseName}}");
|
||||
|
||||
@@ -2187,3 +2187,10 @@ components:
|
||||
format: uuid
|
||||
example: 72f98069-206d-4f12-9f12-3d1e525a8e84
|
||||
nullable: true
|
||||
DateOnlyClass:
|
||||
type: object
|
||||
properties:
|
||||
dateOnlyProperty:
|
||||
type: string
|
||||
format: date
|
||||
example: "2017-07-21"
|
||||
|
||||
@@ -25,6 +25,7 @@ docs/ChildCatAllOf.md
|
||||
docs/ClassModel.md
|
||||
docs/ComplexQuadrilateral.md
|
||||
docs/DanishPig.md
|
||||
docs/DateOnlyClass.md
|
||||
docs/DefaultApi.md
|
||||
docs/DeprecatedObject.md
|
||||
docs/Dog.md
|
||||
@@ -141,6 +142,7 @@ src/Org.OpenAPITools/Model/ChildCatAllOf.cs
|
||||
src/Org.OpenAPITools/Model/ClassModel.cs
|
||||
src/Org.OpenAPITools/Model/ComplexQuadrilateral.cs
|
||||
src/Org.OpenAPITools/Model/DanishPig.cs
|
||||
src/Org.OpenAPITools/Model/DateOnlyClass.cs
|
||||
src/Org.OpenAPITools/Model/DeprecatedObject.cs
|
||||
src/Org.OpenAPITools/Model/Dog.cs
|
||||
src/Org.OpenAPITools/Model/DogAllOf.cs
|
||||
|
||||
@@ -169,6 +169,7 @@ Class | Method | HTTP request | Description
|
||||
- [Model.ClassModel](docs/ClassModel.md)
|
||||
- [Model.ComplexQuadrilateral](docs/ComplexQuadrilateral.md)
|
||||
- [Model.DanishPig](docs/DanishPig.md)
|
||||
- [Model.DateOnlyClass](docs/DateOnlyClass.md)
|
||||
- [Model.DeprecatedObject](docs/DeprecatedObject.md)
|
||||
- [Model.Dog](docs/Dog.md)
|
||||
- [Model.DogAllOf](docs/DogAllOf.md)
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
# Org.OpenAPITools.Model.DateOnlyClass
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**DateOnlyProperty** | **DateTime** | | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
||||
@@ -0,0 +1,70 @@
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Api;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing DateOnlyClass
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class DateOnlyClassTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for DateOnlyClass
|
||||
//private DateOnlyClass instance;
|
||||
|
||||
public DateOnlyClassTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of DateOnlyClass
|
||||
//instance = new DateOnlyClass();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of DateOnlyClass
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyClassInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" DateOnlyClass
|
||||
//Assert.IsType<DateOnlyClass>(instance);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'DateOnlyProperty'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyPropertyTest()
|
||||
{
|
||||
// TODO unit test for the property 'DateOnlyProperty'
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,155 @@
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Converters;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using OpenAPIDateConverter = Org.OpenAPITools.Client.OpenAPIDateConverter;
|
||||
using OpenAPIClientUtils = Org.OpenAPITools.Client.ClientUtils;
|
||||
|
||||
namespace Org.OpenAPITools.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// DateOnlyClass
|
||||
/// </summary>
|
||||
[DataContract(Name = "DateOnlyClass")]
|
||||
public partial class DateOnlyClass : IEquatable<DateOnlyClass>, IValidatableObject
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="DateOnlyClass" /> class.
|
||||
/// </summary>
|
||||
/// <param name="dateOnlyProperty">dateOnlyProperty.</param>
|
||||
public DateOnlyClass(DateTime dateOnlyProperty = default(DateTime))
|
||||
{
|
||||
this._DateOnlyProperty = dateOnlyProperty;
|
||||
if (this.DateOnlyProperty != null)
|
||||
{
|
||||
this._flagDateOnlyProperty = true;
|
||||
}
|
||||
this.AdditionalProperties = new Dictionary<string, object>();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets DateOnlyProperty
|
||||
/// </summary>
|
||||
[JsonConverter(typeof(OpenAPIDateConverter))]
|
||||
[DataMember(Name = "dateOnlyProperty", EmitDefaultValue = false)]
|
||||
public DateTime DateOnlyProperty
|
||||
{
|
||||
get{ return _DateOnlyProperty;}
|
||||
set
|
||||
{
|
||||
_DateOnlyProperty = value;
|
||||
_flagDateOnlyProperty = true;
|
||||
}
|
||||
}
|
||||
private DateTime _DateOnlyProperty;
|
||||
private bool _flagDateOnlyProperty;
|
||||
|
||||
/// <summary>
|
||||
/// Returns false as DateOnlyProperty should not be serialized given that it's read-only.
|
||||
/// </summary>
|
||||
/// <returns>false (boolean)</returns>
|
||||
public bool ShouldSerializeDateOnlyProperty()
|
||||
{
|
||||
return _flagDateOnlyProperty;
|
||||
}
|
||||
/// <summary>
|
||||
/// Gets or Sets additional properties
|
||||
/// </summary>
|
||||
[JsonExtensionData]
|
||||
public IDictionary<string, object> AdditionalProperties { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Returns the string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>String presentation of the object</returns>
|
||||
public override string ToString()
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.Append("class DateOnlyClass {\n");
|
||||
sb.Append(" DateOnlyProperty: ").Append(DateOnlyProperty).Append("\n");
|
||||
sb.Append(" AdditionalProperties: ").Append(AdditionalProperties).Append("\n");
|
||||
sb.Append("}\n");
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the JSON string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>JSON string presentation of the object</returns>
|
||||
public virtual string ToJson()
|
||||
{
|
||||
return Newtonsoft.Json.JsonConvert.SerializeObject(this, Newtonsoft.Json.Formatting.Indented);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if objects are equal
|
||||
/// </summary>
|
||||
/// <param name="input">Object to be compared</param>
|
||||
/// <returns>Boolean</returns>
|
||||
public override bool Equals(object input)
|
||||
{
|
||||
return OpenAPIClientUtils.compareLogic.Compare(this, input as DateOnlyClass).AreEqual;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if DateOnlyClass instances are equal
|
||||
/// </summary>
|
||||
/// <param name="input">Instance of DateOnlyClass to be compared</param>
|
||||
/// <returns>Boolean</returns>
|
||||
public bool Equals(DateOnlyClass input)
|
||||
{
|
||||
return OpenAPIClientUtils.compareLogic.Compare(this, input).AreEqual;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the hash code
|
||||
/// </summary>
|
||||
/// <returns>Hash code</returns>
|
||||
public override int GetHashCode()
|
||||
{
|
||||
unchecked // Overflow is fine, just wrap
|
||||
{
|
||||
int hashCode = 41;
|
||||
if (this.DateOnlyProperty != null)
|
||||
{
|
||||
hashCode = (hashCode * 59) + this.DateOnlyProperty.GetHashCode();
|
||||
}
|
||||
if (this.AdditionalProperties != null)
|
||||
{
|
||||
hashCode = (hashCode * 59) + this.AdditionalProperties.GetHashCode();
|
||||
}
|
||||
return hashCode;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To validate all properties of the instance
|
||||
/// </summary>
|
||||
/// <param name="validationContext">Validation context</param>
|
||||
/// <returns>Validation Result</returns>
|
||||
public IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult> Validate(ValidationContext validationContext)
|
||||
{
|
||||
yield break;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -31,6 +31,7 @@ docs/models/ChildCatAllOf.md
|
||||
docs/models/ClassModel.md
|
||||
docs/models/ComplexQuadrilateral.md
|
||||
docs/models/DanishPig.md
|
||||
docs/models/DateOnlyClass.md
|
||||
docs/models/DeprecatedObject.md
|
||||
docs/models/Dog.md
|
||||
docs/models/DogAllOf.md
|
||||
@@ -147,6 +148,7 @@ src/Org.OpenAPITools/Model/ChildCatAllOf.cs
|
||||
src/Org.OpenAPITools/Model/ClassModel.cs
|
||||
src/Org.OpenAPITools/Model/ComplexQuadrilateral.cs
|
||||
src/Org.OpenAPITools/Model/DanishPig.cs
|
||||
src/Org.OpenAPITools/Model/DateOnlyClass.cs
|
||||
src/Org.OpenAPITools/Model/DeprecatedObject.cs
|
||||
src/Org.OpenAPITools/Model/Dog.cs
|
||||
src/Org.OpenAPITools/Model/DogAllOf.cs
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
# Org.OpenAPITools.Model.DateOnlyClass
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**DateOnlyProperty** | **DateTime** | | [optional]
|
||||
|
||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||
|
||||
@@ -0,0 +1,69 @@
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Api;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing DateOnlyClass
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class DateOnlyClassTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for DateOnlyClass
|
||||
//private DateOnlyClass instance;
|
||||
|
||||
public DateOnlyClassTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of DateOnlyClass
|
||||
//instance = new DateOnlyClass();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of DateOnlyClass
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyClassInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" DateOnlyClass
|
||||
//Assert.IsType<DateOnlyClass>(instance);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'DateOnlyProperty'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyPropertyTest()
|
||||
{
|
||||
// TODO unit test for the property 'DateOnlyProperty'
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -69,6 +69,7 @@ namespace Org.OpenAPITools.Client
|
||||
_jsonOptions.Converters.Add(new ClassModelJsonConverter());
|
||||
_jsonOptions.Converters.Add(new ComplexQuadrilateralJsonConverter());
|
||||
_jsonOptions.Converters.Add(new DanishPigJsonConverter());
|
||||
_jsonOptions.Converters.Add(new DateOnlyClassJsonConverter());
|
||||
_jsonOptions.Converters.Add(new DeprecatedObjectJsonConverter());
|
||||
_jsonOptions.Converters.Add(new DogJsonConverter());
|
||||
_jsonOptions.Converters.Add(new DogAllOfJsonConverter());
|
||||
|
||||
@@ -0,0 +1,160 @@
|
||||
// <auto-generated>
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
#nullable enable
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Text.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using OpenAPIClientUtils = Org.OpenAPITools.Client.ClientUtils;
|
||||
|
||||
namespace Org.OpenAPITools.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// DateOnlyClass
|
||||
/// </summary>
|
||||
public partial class DateOnlyClass : IValidatableObject
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="DateOnlyClass" /> class.
|
||||
/// </summary>
|
||||
/// <param name="dateOnlyProperty">dateOnlyProperty</param>
|
||||
[JsonConstructor]
|
||||
public DateOnlyClass(DateTime dateOnlyProperty)
|
||||
{
|
||||
#pragma warning disable CS0472 // The result of the expression is always the same since a value of this type is never equal to 'null'
|
||||
#pragma warning disable CS8073 // The result of the expression is always the same since a value of this type is never equal to 'null'
|
||||
|
||||
if (dateOnlyProperty == null)
|
||||
throw new ArgumentNullException("dateOnlyProperty is a required property for DateOnlyClass and cannot be null.");
|
||||
|
||||
#pragma warning restore CS0472 // The result of the expression is always the same since a value of this type is never equal to 'null'
|
||||
#pragma warning restore CS8073 // The result of the expression is always the same since a value of this type is never equal to 'null'
|
||||
|
||||
DateOnlyProperty = dateOnlyProperty;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets DateOnlyProperty
|
||||
/// </summary>
|
||||
[JsonPropertyName("dateOnlyProperty")]
|
||||
public DateTime DateOnlyProperty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets additional properties
|
||||
/// </summary>
|
||||
[JsonExtensionData]
|
||||
public Dictionary<string, JsonElement> AdditionalProperties { get; } = new Dictionary<string, JsonElement>();
|
||||
|
||||
/// <summary>
|
||||
/// Returns the string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>String presentation of the object</returns>
|
||||
public override string ToString()
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.Append("class DateOnlyClass {\n");
|
||||
sb.Append(" DateOnlyProperty: ").Append(DateOnlyProperty).Append("\n");
|
||||
sb.Append(" AdditionalProperties: ").Append(AdditionalProperties).Append("\n");
|
||||
sb.Append("}\n");
|
||||
return sb.ToString();
|
||||
}
|
||||
/// <summary>
|
||||
/// To validate all properties of the instance
|
||||
/// </summary>
|
||||
/// <param name="validationContext">Validation context</param>
|
||||
/// <returns>Validation Result</returns>
|
||||
public IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult> Validate(ValidationContext validationContext)
|
||||
{
|
||||
yield break;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// A Json converter for type DateOnlyClass
|
||||
/// </summary>
|
||||
public class DateOnlyClassJsonConverter : JsonConverter<DateOnlyClass>
|
||||
{
|
||||
/// <summary>
|
||||
/// The format to use to serialize DateOnlyProperty
|
||||
/// </summary>
|
||||
public string DateOnlyPropertyFormat { get; set; } = "yyyy-MM-dd";
|
||||
|
||||
/// <summary>
|
||||
/// A Json reader.
|
||||
/// </summary>
|
||||
/// <param name="utf8JsonReader"></param>
|
||||
/// <param name="typeToConvert"></param>
|
||||
/// <param name="jsonSerializerOptions"></param>
|
||||
/// <returns></returns>
|
||||
/// <exception cref="JsonException"></exception>
|
||||
public override DateOnlyClass Read(ref Utf8JsonReader utf8JsonReader, Type typeToConvert, JsonSerializerOptions jsonSerializerOptions)
|
||||
{
|
||||
int currentDepth = utf8JsonReader.CurrentDepth;
|
||||
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.StartObject && utf8JsonReader.TokenType != JsonTokenType.StartArray)
|
||||
throw new JsonException();
|
||||
|
||||
JsonTokenType startingTokenType = utf8JsonReader.TokenType;
|
||||
|
||||
DateTime dateOnlyProperty = default;
|
||||
|
||||
while (utf8JsonReader.Read())
|
||||
{
|
||||
if (startingTokenType == JsonTokenType.StartObject && utf8JsonReader.TokenType == JsonTokenType.EndObject && currentDepth == utf8JsonReader.CurrentDepth)
|
||||
break;
|
||||
|
||||
if (startingTokenType == JsonTokenType.StartArray && utf8JsonReader.TokenType == JsonTokenType.EndArray && currentDepth == utf8JsonReader.CurrentDepth)
|
||||
break;
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
{
|
||||
case "dateOnlyProperty":
|
||||
dateOnlyProperty = JsonSerializer.Deserialize<DateTime>(ref utf8JsonReader, jsonSerializerOptions);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return new DateOnlyClass(dateOnlyProperty);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// A Json writer
|
||||
/// </summary>
|
||||
/// <param name="writer"></param>
|
||||
/// <param name="dateOnlyClass"></param>
|
||||
/// <param name="jsonSerializerOptions"></param>
|
||||
/// <exception cref="NotImplementedException"></exception>
|
||||
public override void Write(Utf8JsonWriter writer, DateOnlyClass dateOnlyClass, JsonSerializerOptions jsonSerializerOptions)
|
||||
{
|
||||
writer.WriteStartObject();
|
||||
|
||||
writer.WriteString("dateOnlyProperty", dateOnlyClass.DateOnlyProperty.ToString(this.DateOnlyPropertyFormat));
|
||||
|
||||
writer.WriteEndObject();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -365,6 +365,11 @@ namespace Org.OpenAPITools.Model
|
||||
/// </summary>
|
||||
public class FormatTestJsonConverter : JsonConverter<FormatTest>
|
||||
{
|
||||
/// <summary>
|
||||
/// The format to use to serialize Date
|
||||
/// </summary>
|
||||
public string DateFormat { get; set; } = "yyyy-MM-dd";
|
||||
|
||||
/// <summary>
|
||||
/// A Json reader.
|
||||
/// </summary>
|
||||
@@ -486,8 +491,7 @@ namespace Org.OpenAPITools.Model
|
||||
JsonSerializer.Serialize(writer, formatTest.Binary, jsonSerializerOptions);
|
||||
writer.WritePropertyName("byte");
|
||||
JsonSerializer.Serialize(writer, formatTest.ByteProperty, jsonSerializerOptions);
|
||||
writer.WritePropertyName("date");
|
||||
JsonSerializer.Serialize(writer, formatTest.Date, jsonSerializerOptions);
|
||||
writer.WriteString("date", formatTest.Date.ToString(this.DateFormat));
|
||||
writer.WritePropertyName("dateTime");
|
||||
JsonSerializer.Serialize(writer, formatTest.DateTime, jsonSerializerOptions);
|
||||
writer.WritePropertyName("decimal");
|
||||
|
||||
@@ -186,6 +186,11 @@ namespace Org.OpenAPITools.Model
|
||||
/// </summary>
|
||||
public class NullableClassJsonConverter : JsonConverter<NullableClass>
|
||||
{
|
||||
/// <summary>
|
||||
/// The format to use to serialize DateProp
|
||||
/// </summary>
|
||||
public string DatePropFormat { get; set; } = "yyyy-MM-dd";
|
||||
|
||||
/// <summary>
|
||||
/// A Json reader.
|
||||
/// </summary>
|
||||
@@ -301,8 +306,10 @@ namespace Org.OpenAPITools.Model
|
||||
writer.WriteBoolean("boolean_prop", nullableClass.BooleanProp.Value);
|
||||
else
|
||||
writer.WriteNull("boolean_prop");
|
||||
writer.WritePropertyName("date_prop");
|
||||
JsonSerializer.Serialize(writer, nullableClass.DateProp, jsonSerializerOptions);
|
||||
if (nullableClass.DateProp != null)
|
||||
writer.WriteString("date_prop", nullableClass.DateProp.Value.ToString(this.DatePropFormat));
|
||||
else
|
||||
writer.WriteNull("date_prop");
|
||||
writer.WritePropertyName("datetime_prop");
|
||||
JsonSerializer.Serialize(writer, nullableClass.DatetimeProp, jsonSerializerOptions);
|
||||
if (nullableClass.IntegerProp != null)
|
||||
|
||||
@@ -31,6 +31,7 @@ docs/models/ChildCatAllOf.md
|
||||
docs/models/ClassModel.md
|
||||
docs/models/ComplexQuadrilateral.md
|
||||
docs/models/DanishPig.md
|
||||
docs/models/DateOnlyClass.md
|
||||
docs/models/DeprecatedObject.md
|
||||
docs/models/Dog.md
|
||||
docs/models/DogAllOf.md
|
||||
@@ -147,6 +148,7 @@ src/Org.OpenAPITools/Model/ChildCatAllOf.cs
|
||||
src/Org.OpenAPITools/Model/ClassModel.cs
|
||||
src/Org.OpenAPITools/Model/ComplexQuadrilateral.cs
|
||||
src/Org.OpenAPITools/Model/DanishPig.cs
|
||||
src/Org.OpenAPITools/Model/DateOnlyClass.cs
|
||||
src/Org.OpenAPITools/Model/DeprecatedObject.cs
|
||||
src/Org.OpenAPITools/Model/Dog.cs
|
||||
src/Org.OpenAPITools/Model/DogAllOf.cs
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
# Org.OpenAPITools.Model.DateOnlyClass
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**DateOnlyProperty** | **DateTime** | | [optional]
|
||||
|
||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||
|
||||
@@ -0,0 +1,69 @@
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Api;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing DateOnlyClass
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class DateOnlyClassTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for DateOnlyClass
|
||||
//private DateOnlyClass instance;
|
||||
|
||||
public DateOnlyClassTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of DateOnlyClass
|
||||
//instance = new DateOnlyClass();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of DateOnlyClass
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyClassInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" DateOnlyClass
|
||||
//Assert.IsType<DateOnlyClass>(instance);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'DateOnlyProperty'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyPropertyTest()
|
||||
{
|
||||
// TODO unit test for the property 'DateOnlyProperty'
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -67,6 +67,7 @@ namespace Org.OpenAPITools.Client
|
||||
_jsonOptions.Converters.Add(new ClassModelJsonConverter());
|
||||
_jsonOptions.Converters.Add(new ComplexQuadrilateralJsonConverter());
|
||||
_jsonOptions.Converters.Add(new DanishPigJsonConverter());
|
||||
_jsonOptions.Converters.Add(new DateOnlyClassJsonConverter());
|
||||
_jsonOptions.Converters.Add(new DeprecatedObjectJsonConverter());
|
||||
_jsonOptions.Converters.Add(new DogJsonConverter());
|
||||
_jsonOptions.Converters.Add(new DogAllOfJsonConverter());
|
||||
|
||||
@@ -0,0 +1,158 @@
|
||||
// <auto-generated>
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Text.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using OpenAPIClientUtils = Org.OpenAPITools.Client.ClientUtils;
|
||||
|
||||
namespace Org.OpenAPITools.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// DateOnlyClass
|
||||
/// </summary>
|
||||
public partial class DateOnlyClass : IValidatableObject
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="DateOnlyClass" /> class.
|
||||
/// </summary>
|
||||
/// <param name="dateOnlyProperty">dateOnlyProperty</param>
|
||||
[JsonConstructor]
|
||||
public DateOnlyClass(DateTime dateOnlyProperty)
|
||||
{
|
||||
#pragma warning disable CS0472 // The result of the expression is always the same since a value of this type is never equal to 'null'
|
||||
#pragma warning disable CS8073 // The result of the expression is always the same since a value of this type is never equal to 'null'
|
||||
|
||||
if (dateOnlyProperty == null)
|
||||
throw new ArgumentNullException("dateOnlyProperty is a required property for DateOnlyClass and cannot be null.");
|
||||
|
||||
#pragma warning restore CS0472 // The result of the expression is always the same since a value of this type is never equal to 'null'
|
||||
#pragma warning restore CS8073 // The result of the expression is always the same since a value of this type is never equal to 'null'
|
||||
|
||||
DateOnlyProperty = dateOnlyProperty;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets DateOnlyProperty
|
||||
/// </summary>
|
||||
[JsonPropertyName("dateOnlyProperty")]
|
||||
public DateTime DateOnlyProperty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets additional properties
|
||||
/// </summary>
|
||||
[JsonExtensionData]
|
||||
public Dictionary<string, JsonElement> AdditionalProperties { get; } = new Dictionary<string, JsonElement>();
|
||||
|
||||
/// <summary>
|
||||
/// Returns the string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>String presentation of the object</returns>
|
||||
public override string ToString()
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.Append("class DateOnlyClass {\n");
|
||||
sb.Append(" DateOnlyProperty: ").Append(DateOnlyProperty).Append("\n");
|
||||
sb.Append(" AdditionalProperties: ").Append(AdditionalProperties).Append("\n");
|
||||
sb.Append("}\n");
|
||||
return sb.ToString();
|
||||
}
|
||||
/// <summary>
|
||||
/// To validate all properties of the instance
|
||||
/// </summary>
|
||||
/// <param name="validationContext">Validation context</param>
|
||||
/// <returns>Validation Result</returns>
|
||||
public IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult> Validate(ValidationContext validationContext)
|
||||
{
|
||||
yield break;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// A Json converter for type DateOnlyClass
|
||||
/// </summary>
|
||||
public class DateOnlyClassJsonConverter : JsonConverter<DateOnlyClass>
|
||||
{
|
||||
/// <summary>
|
||||
/// The format to use to serialize DateOnlyProperty
|
||||
/// </summary>
|
||||
public string DateOnlyPropertyFormat { get; set; } = "yyyy-MM-dd";
|
||||
|
||||
/// <summary>
|
||||
/// A Json reader.
|
||||
/// </summary>
|
||||
/// <param name="utf8JsonReader"></param>
|
||||
/// <param name="typeToConvert"></param>
|
||||
/// <param name="jsonSerializerOptions"></param>
|
||||
/// <returns></returns>
|
||||
/// <exception cref="JsonException"></exception>
|
||||
public override DateOnlyClass Read(ref Utf8JsonReader utf8JsonReader, Type typeToConvert, JsonSerializerOptions jsonSerializerOptions)
|
||||
{
|
||||
int currentDepth = utf8JsonReader.CurrentDepth;
|
||||
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.StartObject && utf8JsonReader.TokenType != JsonTokenType.StartArray)
|
||||
throw new JsonException();
|
||||
|
||||
JsonTokenType startingTokenType = utf8JsonReader.TokenType;
|
||||
|
||||
DateTime dateOnlyProperty = default;
|
||||
|
||||
while (utf8JsonReader.Read())
|
||||
{
|
||||
if (startingTokenType == JsonTokenType.StartObject && utf8JsonReader.TokenType == JsonTokenType.EndObject && currentDepth == utf8JsonReader.CurrentDepth)
|
||||
break;
|
||||
|
||||
if (startingTokenType == JsonTokenType.StartArray && utf8JsonReader.TokenType == JsonTokenType.EndArray && currentDepth == utf8JsonReader.CurrentDepth)
|
||||
break;
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
{
|
||||
case "dateOnlyProperty":
|
||||
dateOnlyProperty = JsonSerializer.Deserialize<DateTime>(ref utf8JsonReader, jsonSerializerOptions);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return new DateOnlyClass(dateOnlyProperty);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// A Json writer
|
||||
/// </summary>
|
||||
/// <param name="writer"></param>
|
||||
/// <param name="dateOnlyClass"></param>
|
||||
/// <param name="jsonSerializerOptions"></param>
|
||||
/// <exception cref="NotImplementedException"></exception>
|
||||
public override void Write(Utf8JsonWriter writer, DateOnlyClass dateOnlyClass, JsonSerializerOptions jsonSerializerOptions)
|
||||
{
|
||||
writer.WriteStartObject();
|
||||
|
||||
writer.WriteString("dateOnlyProperty", dateOnlyClass.DateOnlyProperty.ToString(this.DateOnlyPropertyFormat));
|
||||
|
||||
writer.WriteEndObject();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -363,6 +363,11 @@ namespace Org.OpenAPITools.Model
|
||||
/// </summary>
|
||||
public class FormatTestJsonConverter : JsonConverter<FormatTest>
|
||||
{
|
||||
/// <summary>
|
||||
/// The format to use to serialize Date
|
||||
/// </summary>
|
||||
public string DateFormat { get; set; } = "yyyy-MM-dd";
|
||||
|
||||
/// <summary>
|
||||
/// A Json reader.
|
||||
/// </summary>
|
||||
@@ -484,8 +489,7 @@ namespace Org.OpenAPITools.Model
|
||||
JsonSerializer.Serialize(writer, formatTest.Binary, jsonSerializerOptions);
|
||||
writer.WritePropertyName("byte");
|
||||
JsonSerializer.Serialize(writer, formatTest.ByteProperty, jsonSerializerOptions);
|
||||
writer.WritePropertyName("date");
|
||||
JsonSerializer.Serialize(writer, formatTest.Date, jsonSerializerOptions);
|
||||
writer.WriteString("date", formatTest.Date.ToString(this.DateFormat));
|
||||
writer.WritePropertyName("dateTime");
|
||||
JsonSerializer.Serialize(writer, formatTest.DateTime, jsonSerializerOptions);
|
||||
writer.WritePropertyName("decimal");
|
||||
|
||||
@@ -184,6 +184,11 @@ namespace Org.OpenAPITools.Model
|
||||
/// </summary>
|
||||
public class NullableClassJsonConverter : JsonConverter<NullableClass>
|
||||
{
|
||||
/// <summary>
|
||||
/// The format to use to serialize DateProp
|
||||
/// </summary>
|
||||
public string DatePropFormat { get; set; } = "yyyy-MM-dd";
|
||||
|
||||
/// <summary>
|
||||
/// A Json reader.
|
||||
/// </summary>
|
||||
@@ -299,8 +304,10 @@ namespace Org.OpenAPITools.Model
|
||||
writer.WriteBoolean("boolean_prop", nullableClass.BooleanProp.Value);
|
||||
else
|
||||
writer.WriteNull("boolean_prop");
|
||||
writer.WritePropertyName("date_prop");
|
||||
JsonSerializer.Serialize(writer, nullableClass.DateProp, jsonSerializerOptions);
|
||||
if (nullableClass.DateProp != null)
|
||||
writer.WriteString("date_prop", nullableClass.DateProp.Value.ToString(this.DatePropFormat));
|
||||
else
|
||||
writer.WriteNull("date_prop");
|
||||
writer.WritePropertyName("datetime_prop");
|
||||
JsonSerializer.Serialize(writer, nullableClass.DatetimeProp, jsonSerializerOptions);
|
||||
if (nullableClass.IntegerProp != null)
|
||||
|
||||
@@ -31,6 +31,7 @@ docs/models/ChildCatAllOf.md
|
||||
docs/models/ClassModel.md
|
||||
docs/models/ComplexQuadrilateral.md
|
||||
docs/models/DanishPig.md
|
||||
docs/models/DateOnlyClass.md
|
||||
docs/models/DeprecatedObject.md
|
||||
docs/models/Dog.md
|
||||
docs/models/DogAllOf.md
|
||||
@@ -147,6 +148,7 @@ src/Org.OpenAPITools/Model/ChildCatAllOf.cs
|
||||
src/Org.OpenAPITools/Model/ClassModel.cs
|
||||
src/Org.OpenAPITools/Model/ComplexQuadrilateral.cs
|
||||
src/Org.OpenAPITools/Model/DanishPig.cs
|
||||
src/Org.OpenAPITools/Model/DateOnlyClass.cs
|
||||
src/Org.OpenAPITools/Model/DeprecatedObject.cs
|
||||
src/Org.OpenAPITools/Model/Dog.cs
|
||||
src/Org.OpenAPITools/Model/DogAllOf.cs
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
# Org.OpenAPITools.Model.DateOnlyClass
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**DateOnlyProperty** | **DateTime** | | [optional]
|
||||
|
||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||
|
||||
@@ -0,0 +1,69 @@
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Api;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing DateOnlyClass
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class DateOnlyClassTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for DateOnlyClass
|
||||
//private DateOnlyClass instance;
|
||||
|
||||
public DateOnlyClassTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of DateOnlyClass
|
||||
//instance = new DateOnlyClass();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of DateOnlyClass
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyClassInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" DateOnlyClass
|
||||
//Assert.IsType<DateOnlyClass>(instance);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'DateOnlyProperty'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyPropertyTest()
|
||||
{
|
||||
// TODO unit test for the property 'DateOnlyProperty'
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -67,6 +67,7 @@ namespace Org.OpenAPITools.Client
|
||||
_jsonOptions.Converters.Add(new ClassModelJsonConverter());
|
||||
_jsonOptions.Converters.Add(new ComplexQuadrilateralJsonConverter());
|
||||
_jsonOptions.Converters.Add(new DanishPigJsonConverter());
|
||||
_jsonOptions.Converters.Add(new DateOnlyClassJsonConverter());
|
||||
_jsonOptions.Converters.Add(new DeprecatedObjectJsonConverter());
|
||||
_jsonOptions.Converters.Add(new DogJsonConverter());
|
||||
_jsonOptions.Converters.Add(new DogAllOfJsonConverter());
|
||||
|
||||
@@ -0,0 +1,158 @@
|
||||
// <auto-generated>
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Text.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using OpenAPIClientUtils = Org.OpenAPITools.Client.ClientUtils;
|
||||
|
||||
namespace Org.OpenAPITools.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// DateOnlyClass
|
||||
/// </summary>
|
||||
public partial class DateOnlyClass : IValidatableObject
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="DateOnlyClass" /> class.
|
||||
/// </summary>
|
||||
/// <param name="dateOnlyProperty">dateOnlyProperty</param>
|
||||
[JsonConstructor]
|
||||
public DateOnlyClass(DateTime dateOnlyProperty)
|
||||
{
|
||||
#pragma warning disable CS0472 // The result of the expression is always the same since a value of this type is never equal to 'null'
|
||||
#pragma warning disable CS8073 // The result of the expression is always the same since a value of this type is never equal to 'null'
|
||||
|
||||
if (dateOnlyProperty == null)
|
||||
throw new ArgumentNullException("dateOnlyProperty is a required property for DateOnlyClass and cannot be null.");
|
||||
|
||||
#pragma warning restore CS0472 // The result of the expression is always the same since a value of this type is never equal to 'null'
|
||||
#pragma warning restore CS8073 // The result of the expression is always the same since a value of this type is never equal to 'null'
|
||||
|
||||
DateOnlyProperty = dateOnlyProperty;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets DateOnlyProperty
|
||||
/// </summary>
|
||||
[JsonPropertyName("dateOnlyProperty")]
|
||||
public DateTime DateOnlyProperty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets additional properties
|
||||
/// </summary>
|
||||
[JsonExtensionData]
|
||||
public Dictionary<string, JsonElement> AdditionalProperties { get; } = new Dictionary<string, JsonElement>();
|
||||
|
||||
/// <summary>
|
||||
/// Returns the string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>String presentation of the object</returns>
|
||||
public override string ToString()
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.Append("class DateOnlyClass {\n");
|
||||
sb.Append(" DateOnlyProperty: ").Append(DateOnlyProperty).Append("\n");
|
||||
sb.Append(" AdditionalProperties: ").Append(AdditionalProperties).Append("\n");
|
||||
sb.Append("}\n");
|
||||
return sb.ToString();
|
||||
}
|
||||
/// <summary>
|
||||
/// To validate all properties of the instance
|
||||
/// </summary>
|
||||
/// <param name="validationContext">Validation context</param>
|
||||
/// <returns>Validation Result</returns>
|
||||
public IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult> Validate(ValidationContext validationContext)
|
||||
{
|
||||
yield break;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// A Json converter for type DateOnlyClass
|
||||
/// </summary>
|
||||
public class DateOnlyClassJsonConverter : JsonConverter<DateOnlyClass>
|
||||
{
|
||||
/// <summary>
|
||||
/// The format to use to serialize DateOnlyProperty
|
||||
/// </summary>
|
||||
public string DateOnlyPropertyFormat { get; set; } = "yyyy-MM-dd";
|
||||
|
||||
/// <summary>
|
||||
/// A Json reader.
|
||||
/// </summary>
|
||||
/// <param name="utf8JsonReader"></param>
|
||||
/// <param name="typeToConvert"></param>
|
||||
/// <param name="jsonSerializerOptions"></param>
|
||||
/// <returns></returns>
|
||||
/// <exception cref="JsonException"></exception>
|
||||
public override DateOnlyClass Read(ref Utf8JsonReader utf8JsonReader, Type typeToConvert, JsonSerializerOptions jsonSerializerOptions)
|
||||
{
|
||||
int currentDepth = utf8JsonReader.CurrentDepth;
|
||||
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.StartObject && utf8JsonReader.TokenType != JsonTokenType.StartArray)
|
||||
throw new JsonException();
|
||||
|
||||
JsonTokenType startingTokenType = utf8JsonReader.TokenType;
|
||||
|
||||
DateTime dateOnlyProperty = default;
|
||||
|
||||
while (utf8JsonReader.Read())
|
||||
{
|
||||
if (startingTokenType == JsonTokenType.StartObject && utf8JsonReader.TokenType == JsonTokenType.EndObject && currentDepth == utf8JsonReader.CurrentDepth)
|
||||
break;
|
||||
|
||||
if (startingTokenType == JsonTokenType.StartArray && utf8JsonReader.TokenType == JsonTokenType.EndArray && currentDepth == utf8JsonReader.CurrentDepth)
|
||||
break;
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
{
|
||||
case "dateOnlyProperty":
|
||||
dateOnlyProperty = JsonSerializer.Deserialize<DateTime>(ref utf8JsonReader, jsonSerializerOptions);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return new DateOnlyClass(dateOnlyProperty);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// A Json writer
|
||||
/// </summary>
|
||||
/// <param name="writer"></param>
|
||||
/// <param name="dateOnlyClass"></param>
|
||||
/// <param name="jsonSerializerOptions"></param>
|
||||
/// <exception cref="NotImplementedException"></exception>
|
||||
public override void Write(Utf8JsonWriter writer, DateOnlyClass dateOnlyClass, JsonSerializerOptions jsonSerializerOptions)
|
||||
{
|
||||
writer.WriteStartObject();
|
||||
|
||||
writer.WriteString("dateOnlyProperty", dateOnlyClass.DateOnlyProperty.ToString(this.DateOnlyPropertyFormat));
|
||||
|
||||
writer.WriteEndObject();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -363,6 +363,11 @@ namespace Org.OpenAPITools.Model
|
||||
/// </summary>
|
||||
public class FormatTestJsonConverter : JsonConverter<FormatTest>
|
||||
{
|
||||
/// <summary>
|
||||
/// The format to use to serialize Date
|
||||
/// </summary>
|
||||
public string DateFormat { get; set; } = "yyyy-MM-dd";
|
||||
|
||||
/// <summary>
|
||||
/// A Json reader.
|
||||
/// </summary>
|
||||
@@ -484,8 +489,7 @@ namespace Org.OpenAPITools.Model
|
||||
JsonSerializer.Serialize(writer, formatTest.Binary, jsonSerializerOptions);
|
||||
writer.WritePropertyName("byte");
|
||||
JsonSerializer.Serialize(writer, formatTest.ByteProperty, jsonSerializerOptions);
|
||||
writer.WritePropertyName("date");
|
||||
JsonSerializer.Serialize(writer, formatTest.Date, jsonSerializerOptions);
|
||||
writer.WriteString("date", formatTest.Date.ToString(this.DateFormat));
|
||||
writer.WritePropertyName("dateTime");
|
||||
JsonSerializer.Serialize(writer, formatTest.DateTime, jsonSerializerOptions);
|
||||
writer.WritePropertyName("decimal");
|
||||
|
||||
@@ -184,6 +184,11 @@ namespace Org.OpenAPITools.Model
|
||||
/// </summary>
|
||||
public class NullableClassJsonConverter : JsonConverter<NullableClass>
|
||||
{
|
||||
/// <summary>
|
||||
/// The format to use to serialize DateProp
|
||||
/// </summary>
|
||||
public string DatePropFormat { get; set; } = "yyyy-MM-dd";
|
||||
|
||||
/// <summary>
|
||||
/// A Json reader.
|
||||
/// </summary>
|
||||
@@ -299,8 +304,10 @@ namespace Org.OpenAPITools.Model
|
||||
writer.WriteBoolean("boolean_prop", nullableClass.BooleanProp.Value);
|
||||
else
|
||||
writer.WriteNull("boolean_prop");
|
||||
writer.WritePropertyName("date_prop");
|
||||
JsonSerializer.Serialize(writer, nullableClass.DateProp, jsonSerializerOptions);
|
||||
if (nullableClass.DateProp != null)
|
||||
writer.WriteString("date_prop", nullableClass.DateProp.Value.ToString(this.DatePropFormat));
|
||||
else
|
||||
writer.WriteNull("date_prop");
|
||||
writer.WritePropertyName("datetime_prop");
|
||||
JsonSerializer.Serialize(writer, nullableClass.DatetimeProp, jsonSerializerOptions);
|
||||
if (nullableClass.IntegerProp != null)
|
||||
|
||||
@@ -25,6 +25,7 @@ docs/ChildCatAllOf.md
|
||||
docs/ClassModel.md
|
||||
docs/ComplexQuadrilateral.md
|
||||
docs/DanishPig.md
|
||||
docs/DateOnlyClass.md
|
||||
docs/DefaultApi.md
|
||||
docs/DeprecatedObject.md
|
||||
docs/Dog.md
|
||||
@@ -138,6 +139,7 @@ src/Org.OpenAPITools/Model/ChildCatAllOf.cs
|
||||
src/Org.OpenAPITools/Model/ClassModel.cs
|
||||
src/Org.OpenAPITools/Model/ComplexQuadrilateral.cs
|
||||
src/Org.OpenAPITools/Model/DanishPig.cs
|
||||
src/Org.OpenAPITools/Model/DateOnlyClass.cs
|
||||
src/Org.OpenAPITools/Model/DeprecatedObject.cs
|
||||
src/Org.OpenAPITools/Model/Dog.cs
|
||||
src/Org.OpenAPITools/Model/DogAllOf.cs
|
||||
|
||||
@@ -194,6 +194,7 @@ Class | Method | HTTP request | Description
|
||||
- [Model.ClassModel](docs/ClassModel.md)
|
||||
- [Model.ComplexQuadrilateral](docs/ComplexQuadrilateral.md)
|
||||
- [Model.DanishPig](docs/DanishPig.md)
|
||||
- [Model.DateOnlyClass](docs/DateOnlyClass.md)
|
||||
- [Model.DeprecatedObject](docs/DeprecatedObject.md)
|
||||
- [Model.Dog](docs/Dog.md)
|
||||
- [Model.DogAllOf](docs/DogAllOf.md)
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
# Org.OpenAPITools.Model.DateOnlyClass
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**DateOnlyProperty** | **DateTime** | | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
||||
@@ -0,0 +1,70 @@
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Api;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing DateOnlyClass
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class DateOnlyClassTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for DateOnlyClass
|
||||
//private DateOnlyClass instance;
|
||||
|
||||
public DateOnlyClassTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of DateOnlyClass
|
||||
//instance = new DateOnlyClass();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of DateOnlyClass
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyClassInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" DateOnlyClass
|
||||
//Assert.IsType<DateOnlyClass>(instance);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'DateOnlyProperty'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyPropertyTest()
|
||||
{
|
||||
// TODO unit test for the property 'DateOnlyProperty'
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,134 @@
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Converters;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using FileParameter = Org.OpenAPITools.Client.FileParameter;
|
||||
using OpenAPIDateConverter = Org.OpenAPITools.Client.OpenAPIDateConverter;
|
||||
using OpenAPIClientUtils = Org.OpenAPITools.Client.ClientUtils;
|
||||
|
||||
namespace Org.OpenAPITools.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// DateOnlyClass
|
||||
/// </summary>
|
||||
[DataContract(Name = "DateOnlyClass")]
|
||||
public partial class DateOnlyClass : IEquatable<DateOnlyClass>, IValidatableObject
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="DateOnlyClass" /> class.
|
||||
/// </summary>
|
||||
/// <param name="dateOnlyProperty">dateOnlyProperty.</param>
|
||||
public DateOnlyClass(DateTime dateOnlyProperty = default(DateTime))
|
||||
{
|
||||
this.DateOnlyProperty = dateOnlyProperty;
|
||||
this.AdditionalProperties = new Dictionary<string, object>();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets DateOnlyProperty
|
||||
/// </summary>
|
||||
[DataMember(Name = "dateOnlyProperty", EmitDefaultValue = false)]
|
||||
[JsonConverter(typeof(OpenAPIDateConverter))]
|
||||
public DateTime DateOnlyProperty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets additional properties
|
||||
/// </summary>
|
||||
[JsonExtensionData]
|
||||
public IDictionary<string, object> AdditionalProperties { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Returns the string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>String presentation of the object</returns>
|
||||
public override string ToString()
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.Append("class DateOnlyClass {\n");
|
||||
sb.Append(" DateOnlyProperty: ").Append(DateOnlyProperty).Append("\n");
|
||||
sb.Append(" AdditionalProperties: ").Append(AdditionalProperties).Append("\n");
|
||||
sb.Append("}\n");
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the JSON string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>JSON string presentation of the object</returns>
|
||||
public virtual string ToJson()
|
||||
{
|
||||
return Newtonsoft.Json.JsonConvert.SerializeObject(this, Newtonsoft.Json.Formatting.Indented);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if objects are equal
|
||||
/// </summary>
|
||||
/// <param name="input">Object to be compared</param>
|
||||
/// <returns>Boolean</returns>
|
||||
public override bool Equals(object input)
|
||||
{
|
||||
return OpenAPIClientUtils.compareLogic.Compare(this, input as DateOnlyClass).AreEqual;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if DateOnlyClass instances are equal
|
||||
/// </summary>
|
||||
/// <param name="input">Instance of DateOnlyClass to be compared</param>
|
||||
/// <returns>Boolean</returns>
|
||||
public bool Equals(DateOnlyClass input)
|
||||
{
|
||||
return OpenAPIClientUtils.compareLogic.Compare(this, input).AreEqual;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the hash code
|
||||
/// </summary>
|
||||
/// <returns>Hash code</returns>
|
||||
public override int GetHashCode()
|
||||
{
|
||||
unchecked // Overflow is fine, just wrap
|
||||
{
|
||||
int hashCode = 41;
|
||||
if (this.DateOnlyProperty != null)
|
||||
{
|
||||
hashCode = (hashCode * 59) + this.DateOnlyProperty.GetHashCode();
|
||||
}
|
||||
if (this.AdditionalProperties != null)
|
||||
{
|
||||
hashCode = (hashCode * 59) + this.AdditionalProperties.GetHashCode();
|
||||
}
|
||||
return hashCode;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To validate all properties of the instance
|
||||
/// </summary>
|
||||
/// <param name="validationContext">Validation context</param>
|
||||
/// <returns>Validation Result</returns>
|
||||
public IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult> Validate(ValidationContext validationContext)
|
||||
{
|
||||
yield break;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -25,6 +25,7 @@ docs/ChildCatAllOf.md
|
||||
docs/ClassModel.md
|
||||
docs/ComplexQuadrilateral.md
|
||||
docs/DanishPig.md
|
||||
docs/DateOnlyClass.md
|
||||
docs/DefaultApi.md
|
||||
docs/DeprecatedObject.md
|
||||
docs/Dog.md
|
||||
@@ -141,6 +142,7 @@ src/Org.OpenAPITools/Model/ChildCatAllOf.cs
|
||||
src/Org.OpenAPITools/Model/ClassModel.cs
|
||||
src/Org.OpenAPITools/Model/ComplexQuadrilateral.cs
|
||||
src/Org.OpenAPITools/Model/DanishPig.cs
|
||||
src/Org.OpenAPITools/Model/DateOnlyClass.cs
|
||||
src/Org.OpenAPITools/Model/DeprecatedObject.cs
|
||||
src/Org.OpenAPITools/Model/Dog.cs
|
||||
src/Org.OpenAPITools/Model/DogAllOf.cs
|
||||
|
||||
@@ -181,6 +181,7 @@ Class | Method | HTTP request | Description
|
||||
- [Model.ClassModel](docs/ClassModel.md)
|
||||
- [Model.ComplexQuadrilateral](docs/ComplexQuadrilateral.md)
|
||||
- [Model.DanishPig](docs/DanishPig.md)
|
||||
- [Model.DateOnlyClass](docs/DateOnlyClass.md)
|
||||
- [Model.DeprecatedObject](docs/DeprecatedObject.md)
|
||||
- [Model.Dog](docs/Dog.md)
|
||||
- [Model.DogAllOf](docs/DogAllOf.md)
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
# Org.OpenAPITools.Model.DateOnlyClass
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**DateOnlyProperty** | **DateTime** | | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
||||
@@ -0,0 +1,70 @@
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Api;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing DateOnlyClass
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class DateOnlyClassTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for DateOnlyClass
|
||||
//private DateOnlyClass instance;
|
||||
|
||||
public DateOnlyClassTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of DateOnlyClass
|
||||
//instance = new DateOnlyClass();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of DateOnlyClass
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyClassInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" DateOnlyClass
|
||||
//Assert.IsType<DateOnlyClass>(instance);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'DateOnlyProperty'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyPropertyTest()
|
||||
{
|
||||
// TODO unit test for the property 'DateOnlyProperty'
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,133 @@
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Converters;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using OpenAPIDateConverter = Org.OpenAPITools.Client.OpenAPIDateConverter;
|
||||
using OpenAPIClientUtils = Org.OpenAPITools.Client.ClientUtils;
|
||||
|
||||
namespace Org.OpenAPITools.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// DateOnlyClass
|
||||
/// </summary>
|
||||
[DataContract(Name = "DateOnlyClass")]
|
||||
public partial class DateOnlyClass : IEquatable<DateOnlyClass>, IValidatableObject
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="DateOnlyClass" /> class.
|
||||
/// </summary>
|
||||
/// <param name="dateOnlyProperty">dateOnlyProperty.</param>
|
||||
public DateOnlyClass(DateTime dateOnlyProperty = default(DateTime))
|
||||
{
|
||||
this.DateOnlyProperty = dateOnlyProperty;
|
||||
this.AdditionalProperties = new Dictionary<string, object>();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets DateOnlyProperty
|
||||
/// </summary>
|
||||
[DataMember(Name = "dateOnlyProperty", EmitDefaultValue = false)]
|
||||
[JsonConverter(typeof(OpenAPIDateConverter))]
|
||||
public DateTime DateOnlyProperty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets additional properties
|
||||
/// </summary>
|
||||
[JsonExtensionData]
|
||||
public IDictionary<string, object> AdditionalProperties { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Returns the string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>String presentation of the object</returns>
|
||||
public override string ToString()
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.Append("class DateOnlyClass {\n");
|
||||
sb.Append(" DateOnlyProperty: ").Append(DateOnlyProperty).Append("\n");
|
||||
sb.Append(" AdditionalProperties: ").Append(AdditionalProperties).Append("\n");
|
||||
sb.Append("}\n");
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the JSON string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>JSON string presentation of the object</returns>
|
||||
public virtual string ToJson()
|
||||
{
|
||||
return Newtonsoft.Json.JsonConvert.SerializeObject(this, Newtonsoft.Json.Formatting.Indented);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if objects are equal
|
||||
/// </summary>
|
||||
/// <param name="input">Object to be compared</param>
|
||||
/// <returns>Boolean</returns>
|
||||
public override bool Equals(object input)
|
||||
{
|
||||
return OpenAPIClientUtils.compareLogic.Compare(this, input as DateOnlyClass).AreEqual;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if DateOnlyClass instances are equal
|
||||
/// </summary>
|
||||
/// <param name="input">Instance of DateOnlyClass to be compared</param>
|
||||
/// <returns>Boolean</returns>
|
||||
public bool Equals(DateOnlyClass input)
|
||||
{
|
||||
return OpenAPIClientUtils.compareLogic.Compare(this, input).AreEqual;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the hash code
|
||||
/// </summary>
|
||||
/// <returns>Hash code</returns>
|
||||
public override int GetHashCode()
|
||||
{
|
||||
unchecked // Overflow is fine, just wrap
|
||||
{
|
||||
int hashCode = 41;
|
||||
if (this.DateOnlyProperty != null)
|
||||
{
|
||||
hashCode = (hashCode * 59) + this.DateOnlyProperty.GetHashCode();
|
||||
}
|
||||
if (this.AdditionalProperties != null)
|
||||
{
|
||||
hashCode = (hashCode * 59) + this.AdditionalProperties.GetHashCode();
|
||||
}
|
||||
return hashCode;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To validate all properties of the instance
|
||||
/// </summary>
|
||||
/// <param name="validationContext">Validation context</param>
|
||||
/// <returns>Validation Result</returns>
|
||||
public IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult> Validate(ValidationContext validationContext)
|
||||
{
|
||||
yield break;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -25,6 +25,7 @@ docs/ChildCatAllOf.md
|
||||
docs/ClassModel.md
|
||||
docs/ComplexQuadrilateral.md
|
||||
docs/DanishPig.md
|
||||
docs/DateOnlyClass.md
|
||||
docs/DefaultApi.md
|
||||
docs/DeprecatedObject.md
|
||||
docs/Dog.md
|
||||
@@ -141,6 +142,7 @@ src/Org.OpenAPITools/Model/ChildCatAllOf.cs
|
||||
src/Org.OpenAPITools/Model/ClassModel.cs
|
||||
src/Org.OpenAPITools/Model/ComplexQuadrilateral.cs
|
||||
src/Org.OpenAPITools/Model/DanishPig.cs
|
||||
src/Org.OpenAPITools/Model/DateOnlyClass.cs
|
||||
src/Org.OpenAPITools/Model/DeprecatedObject.cs
|
||||
src/Org.OpenAPITools/Model/Dog.cs
|
||||
src/Org.OpenAPITools/Model/DogAllOf.cs
|
||||
|
||||
@@ -181,6 +181,7 @@ Class | Method | HTTP request | Description
|
||||
- [Model.ClassModel](docs/ClassModel.md)
|
||||
- [Model.ComplexQuadrilateral](docs/ComplexQuadrilateral.md)
|
||||
- [Model.DanishPig](docs/DanishPig.md)
|
||||
- [Model.DateOnlyClass](docs/DateOnlyClass.md)
|
||||
- [Model.DeprecatedObject](docs/DeprecatedObject.md)
|
||||
- [Model.Dog](docs/Dog.md)
|
||||
- [Model.DogAllOf](docs/DogAllOf.md)
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
# Org.OpenAPITools.Model.DateOnlyClass
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**DateOnlyProperty** | **DateTime** | | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
||||
@@ -0,0 +1,70 @@
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Api;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing DateOnlyClass
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class DateOnlyClassTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for DateOnlyClass
|
||||
//private DateOnlyClass instance;
|
||||
|
||||
public DateOnlyClassTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of DateOnlyClass
|
||||
//instance = new DateOnlyClass();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of DateOnlyClass
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyClassInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" DateOnlyClass
|
||||
//Assert.IsType<DateOnlyClass>(instance);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'DateOnlyProperty'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyPropertyTest()
|
||||
{
|
||||
// TODO unit test for the property 'DateOnlyProperty'
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,133 @@
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Converters;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using OpenAPIDateConverter = Org.OpenAPITools.Client.OpenAPIDateConverter;
|
||||
using OpenAPIClientUtils = Org.OpenAPITools.Client.ClientUtils;
|
||||
|
||||
namespace Org.OpenAPITools.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// DateOnlyClass
|
||||
/// </summary>
|
||||
[DataContract(Name = "DateOnlyClass")]
|
||||
public partial class DateOnlyClass : IEquatable<DateOnlyClass>, IValidatableObject
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="DateOnlyClass" /> class.
|
||||
/// </summary>
|
||||
/// <param name="dateOnlyProperty">dateOnlyProperty.</param>
|
||||
public DateOnlyClass(DateTime dateOnlyProperty = default(DateTime))
|
||||
{
|
||||
this.DateOnlyProperty = dateOnlyProperty;
|
||||
this.AdditionalProperties = new Dictionary<string, object>();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets DateOnlyProperty
|
||||
/// </summary>
|
||||
[DataMember(Name = "dateOnlyProperty", EmitDefaultValue = false)]
|
||||
[JsonConverter(typeof(OpenAPIDateConverter))]
|
||||
public DateTime DateOnlyProperty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets additional properties
|
||||
/// </summary>
|
||||
[JsonExtensionData]
|
||||
public IDictionary<string, object> AdditionalProperties { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Returns the string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>String presentation of the object</returns>
|
||||
public override string ToString()
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.Append("class DateOnlyClass {\n");
|
||||
sb.Append(" DateOnlyProperty: ").Append(DateOnlyProperty).Append("\n");
|
||||
sb.Append(" AdditionalProperties: ").Append(AdditionalProperties).Append("\n");
|
||||
sb.Append("}\n");
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the JSON string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>JSON string presentation of the object</returns>
|
||||
public virtual string ToJson()
|
||||
{
|
||||
return Newtonsoft.Json.JsonConvert.SerializeObject(this, Newtonsoft.Json.Formatting.Indented);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if objects are equal
|
||||
/// </summary>
|
||||
/// <param name="input">Object to be compared</param>
|
||||
/// <returns>Boolean</returns>
|
||||
public override bool Equals(object input)
|
||||
{
|
||||
return OpenAPIClientUtils.compareLogic.Compare(this, input as DateOnlyClass).AreEqual;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if DateOnlyClass instances are equal
|
||||
/// </summary>
|
||||
/// <param name="input">Instance of DateOnlyClass to be compared</param>
|
||||
/// <returns>Boolean</returns>
|
||||
public bool Equals(DateOnlyClass input)
|
||||
{
|
||||
return OpenAPIClientUtils.compareLogic.Compare(this, input).AreEqual;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the hash code
|
||||
/// </summary>
|
||||
/// <returns>Hash code</returns>
|
||||
public override int GetHashCode()
|
||||
{
|
||||
unchecked // Overflow is fine, just wrap
|
||||
{
|
||||
int hashCode = 41;
|
||||
if (this.DateOnlyProperty != null)
|
||||
{
|
||||
hashCode = (hashCode * 59) + this.DateOnlyProperty.GetHashCode();
|
||||
}
|
||||
if (this.AdditionalProperties != null)
|
||||
{
|
||||
hashCode = (hashCode * 59) + this.AdditionalProperties.GetHashCode();
|
||||
}
|
||||
return hashCode;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To validate all properties of the instance
|
||||
/// </summary>
|
||||
/// <param name="validationContext">Validation context</param>
|
||||
/// <returns>Validation Result</returns>
|
||||
public IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult> Validate(ValidationContext validationContext)
|
||||
{
|
||||
yield break;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -25,6 +25,7 @@ docs/ChildCatAllOf.md
|
||||
docs/ClassModel.md
|
||||
docs/ComplexQuadrilateral.md
|
||||
docs/DanishPig.md
|
||||
docs/DateOnlyClass.md
|
||||
docs/DefaultApi.md
|
||||
docs/DeprecatedObject.md
|
||||
docs/Dog.md
|
||||
@@ -141,6 +142,7 @@ src/Org.OpenAPITools/Model/ChildCatAllOf.cs
|
||||
src/Org.OpenAPITools/Model/ClassModel.cs
|
||||
src/Org.OpenAPITools/Model/ComplexQuadrilateral.cs
|
||||
src/Org.OpenAPITools/Model/DanishPig.cs
|
||||
src/Org.OpenAPITools/Model/DateOnlyClass.cs
|
||||
src/Org.OpenAPITools/Model/DeprecatedObject.cs
|
||||
src/Org.OpenAPITools/Model/Dog.cs
|
||||
src/Org.OpenAPITools/Model/DogAllOf.cs
|
||||
|
||||
@@ -181,6 +181,7 @@ Class | Method | HTTP request | Description
|
||||
- [Model.ClassModel](docs/ClassModel.md)
|
||||
- [Model.ComplexQuadrilateral](docs/ComplexQuadrilateral.md)
|
||||
- [Model.DanishPig](docs/DanishPig.md)
|
||||
- [Model.DateOnlyClass](docs/DateOnlyClass.md)
|
||||
- [Model.DeprecatedObject](docs/DeprecatedObject.md)
|
||||
- [Model.Dog](docs/Dog.md)
|
||||
- [Model.DogAllOf](docs/DogAllOf.md)
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
# Org.OpenAPITools.Model.DateOnlyClass
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**DateOnlyProperty** | **DateTime** | | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
||||
@@ -0,0 +1,70 @@
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Api;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing DateOnlyClass
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class DateOnlyClassTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for DateOnlyClass
|
||||
//private DateOnlyClass instance;
|
||||
|
||||
public DateOnlyClassTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of DateOnlyClass
|
||||
//instance = new DateOnlyClass();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of DateOnlyClass
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyClassInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" DateOnlyClass
|
||||
//Assert.IsType<DateOnlyClass>(instance);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'DateOnlyProperty'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyPropertyTest()
|
||||
{
|
||||
// TODO unit test for the property 'DateOnlyProperty'
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,133 @@
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Converters;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using OpenAPIDateConverter = Org.OpenAPITools.Client.OpenAPIDateConverter;
|
||||
using OpenAPIClientUtils = Org.OpenAPITools.Client.ClientUtils;
|
||||
|
||||
namespace Org.OpenAPITools.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// DateOnlyClass
|
||||
/// </summary>
|
||||
[DataContract(Name = "DateOnlyClass")]
|
||||
public partial class DateOnlyClass : IEquatable<DateOnlyClass>, IValidatableObject
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="DateOnlyClass" /> class.
|
||||
/// </summary>
|
||||
/// <param name="dateOnlyProperty">dateOnlyProperty.</param>
|
||||
public DateOnlyClass(DateTime dateOnlyProperty = default(DateTime))
|
||||
{
|
||||
this.DateOnlyProperty = dateOnlyProperty;
|
||||
this.AdditionalProperties = new Dictionary<string, object>();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets DateOnlyProperty
|
||||
/// </summary>
|
||||
[DataMember(Name = "dateOnlyProperty", EmitDefaultValue = false)]
|
||||
[JsonConverter(typeof(OpenAPIDateConverter))]
|
||||
public DateTime DateOnlyProperty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets additional properties
|
||||
/// </summary>
|
||||
[JsonExtensionData]
|
||||
public IDictionary<string, object> AdditionalProperties { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Returns the string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>String presentation of the object</returns>
|
||||
public override string ToString()
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.Append("class DateOnlyClass {\n");
|
||||
sb.Append(" DateOnlyProperty: ").Append(DateOnlyProperty).Append("\n");
|
||||
sb.Append(" AdditionalProperties: ").Append(AdditionalProperties).Append("\n");
|
||||
sb.Append("}\n");
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the JSON string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>JSON string presentation of the object</returns>
|
||||
public virtual string ToJson()
|
||||
{
|
||||
return Newtonsoft.Json.JsonConvert.SerializeObject(this, Newtonsoft.Json.Formatting.Indented);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if objects are equal
|
||||
/// </summary>
|
||||
/// <param name="input">Object to be compared</param>
|
||||
/// <returns>Boolean</returns>
|
||||
public override bool Equals(object input)
|
||||
{
|
||||
return OpenAPIClientUtils.compareLogic.Compare(this, input as DateOnlyClass).AreEqual;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if DateOnlyClass instances are equal
|
||||
/// </summary>
|
||||
/// <param name="input">Instance of DateOnlyClass to be compared</param>
|
||||
/// <returns>Boolean</returns>
|
||||
public bool Equals(DateOnlyClass input)
|
||||
{
|
||||
return OpenAPIClientUtils.compareLogic.Compare(this, input).AreEqual;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the hash code
|
||||
/// </summary>
|
||||
/// <returns>Hash code</returns>
|
||||
public override int GetHashCode()
|
||||
{
|
||||
unchecked // Overflow is fine, just wrap
|
||||
{
|
||||
int hashCode = 41;
|
||||
if (this.DateOnlyProperty != null)
|
||||
{
|
||||
hashCode = (hashCode * 59) + this.DateOnlyProperty.GetHashCode();
|
||||
}
|
||||
if (this.AdditionalProperties != null)
|
||||
{
|
||||
hashCode = (hashCode * 59) + this.AdditionalProperties.GetHashCode();
|
||||
}
|
||||
return hashCode;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To validate all properties of the instance
|
||||
/// </summary>
|
||||
/// <param name="validationContext">Validation context</param>
|
||||
/// <returns>Validation Result</returns>
|
||||
public IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult> Validate(ValidationContext validationContext)
|
||||
{
|
||||
yield break;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -25,6 +25,7 @@ docs/ChildCatAllOf.md
|
||||
docs/ClassModel.md
|
||||
docs/ComplexQuadrilateral.md
|
||||
docs/DanishPig.md
|
||||
docs/DateOnlyClass.md
|
||||
docs/DefaultApi.md
|
||||
docs/DeprecatedObject.md
|
||||
docs/Dog.md
|
||||
@@ -140,6 +141,7 @@ src/Org.OpenAPITools/Model/ChildCatAllOf.cs
|
||||
src/Org.OpenAPITools/Model/ClassModel.cs
|
||||
src/Org.OpenAPITools/Model/ComplexQuadrilateral.cs
|
||||
src/Org.OpenAPITools/Model/DanishPig.cs
|
||||
src/Org.OpenAPITools/Model/DateOnlyClass.cs
|
||||
src/Org.OpenAPITools/Model/DeprecatedObject.cs
|
||||
src/Org.OpenAPITools/Model/Dog.cs
|
||||
src/Org.OpenAPITools/Model/DogAllOf.cs
|
||||
|
||||
@@ -169,6 +169,7 @@ Class | Method | HTTP request | Description
|
||||
- [Model.ClassModel](docs/ClassModel.md)
|
||||
- [Model.ComplexQuadrilateral](docs/ComplexQuadrilateral.md)
|
||||
- [Model.DanishPig](docs/DanishPig.md)
|
||||
- [Model.DateOnlyClass](docs/DateOnlyClass.md)
|
||||
- [Model.DeprecatedObject](docs/DeprecatedObject.md)
|
||||
- [Model.Dog](docs/Dog.md)
|
||||
- [Model.DogAllOf](docs/DogAllOf.md)
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
# Org.OpenAPITools.Model.DateOnlyClass
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**DateOnlyProperty** | **DateTime** | | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
||||
@@ -0,0 +1,70 @@
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Api;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing DateOnlyClass
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class DateOnlyClassTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for DateOnlyClass
|
||||
//private DateOnlyClass instance;
|
||||
|
||||
public DateOnlyClassTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of DateOnlyClass
|
||||
//instance = new DateOnlyClass();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of DateOnlyClass
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyClassInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" DateOnlyClass
|
||||
//Assert.IsType<DateOnlyClass>(instance);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'DateOnlyProperty'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyPropertyTest()
|
||||
{
|
||||
// TODO unit test for the property 'DateOnlyProperty'
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,133 @@
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Converters;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using OpenAPIDateConverter = Org.OpenAPITools.Client.OpenAPIDateConverter;
|
||||
using OpenAPIClientUtils = Org.OpenAPITools.Client.ClientUtils;
|
||||
|
||||
namespace Org.OpenAPITools.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// DateOnlyClass
|
||||
/// </summary>
|
||||
[DataContract(Name = "DateOnlyClass")]
|
||||
public partial class DateOnlyClass : IEquatable<DateOnlyClass>, IValidatableObject
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="DateOnlyClass" /> class.
|
||||
/// </summary>
|
||||
/// <param name="dateOnlyProperty">dateOnlyProperty.</param>
|
||||
public DateOnlyClass(DateTime dateOnlyProperty = default(DateTime))
|
||||
{
|
||||
this.DateOnlyProperty = dateOnlyProperty;
|
||||
this.AdditionalProperties = new Dictionary<string, object>();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets DateOnlyProperty
|
||||
/// </summary>
|
||||
[DataMember(Name = "dateOnlyProperty", EmitDefaultValue = false)]
|
||||
[JsonConverter(typeof(OpenAPIDateConverter))]
|
||||
public DateTime DateOnlyProperty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets additional properties
|
||||
/// </summary>
|
||||
[JsonExtensionData]
|
||||
public IDictionary<string, object> AdditionalProperties { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Returns the string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>String presentation of the object</returns>
|
||||
public override string ToString()
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.Append("class DateOnlyClass {\n");
|
||||
sb.Append(" DateOnlyProperty: ").Append(DateOnlyProperty).Append("\n");
|
||||
sb.Append(" AdditionalProperties: ").Append(AdditionalProperties).Append("\n");
|
||||
sb.Append("}\n");
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the JSON string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>JSON string presentation of the object</returns>
|
||||
public virtual string ToJson()
|
||||
{
|
||||
return Newtonsoft.Json.JsonConvert.SerializeObject(this, Newtonsoft.Json.Formatting.Indented);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if objects are equal
|
||||
/// </summary>
|
||||
/// <param name="input">Object to be compared</param>
|
||||
/// <returns>Boolean</returns>
|
||||
public override bool Equals(object input)
|
||||
{
|
||||
return OpenAPIClientUtils.compareLogic.Compare(this, input as DateOnlyClass).AreEqual;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if DateOnlyClass instances are equal
|
||||
/// </summary>
|
||||
/// <param name="input">Instance of DateOnlyClass to be compared</param>
|
||||
/// <returns>Boolean</returns>
|
||||
public bool Equals(DateOnlyClass input)
|
||||
{
|
||||
return OpenAPIClientUtils.compareLogic.Compare(this, input).AreEqual;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the hash code
|
||||
/// </summary>
|
||||
/// <returns>Hash code</returns>
|
||||
public override int GetHashCode()
|
||||
{
|
||||
unchecked // Overflow is fine, just wrap
|
||||
{
|
||||
int hashCode = 41;
|
||||
if (this.DateOnlyProperty != null)
|
||||
{
|
||||
hashCode = (hashCode * 59) + this.DateOnlyProperty.GetHashCode();
|
||||
}
|
||||
if (this.AdditionalProperties != null)
|
||||
{
|
||||
hashCode = (hashCode * 59) + this.AdditionalProperties.GetHashCode();
|
||||
}
|
||||
return hashCode;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To validate all properties of the instance
|
||||
/// </summary>
|
||||
/// <param name="validationContext">Validation context</param>
|
||||
/// <returns>Validation Result</returns>
|
||||
public IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult> Validate(ValidationContext validationContext)
|
||||
{
|
||||
yield break;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -25,6 +25,7 @@ docs/ChildCatAllOf.md
|
||||
docs/ClassModel.md
|
||||
docs/ComplexQuadrilateral.md
|
||||
docs/DanishPig.md
|
||||
docs/DateOnlyClass.md
|
||||
docs/DefaultApi.md
|
||||
docs/DeprecatedObject.md
|
||||
docs/Dog.md
|
||||
@@ -140,6 +141,7 @@ src/Org.OpenAPITools/Model/ChildCatAllOf.cs
|
||||
src/Org.OpenAPITools/Model/ClassModel.cs
|
||||
src/Org.OpenAPITools/Model/ComplexQuadrilateral.cs
|
||||
src/Org.OpenAPITools/Model/DanishPig.cs
|
||||
src/Org.OpenAPITools/Model/DateOnlyClass.cs
|
||||
src/Org.OpenAPITools/Model/DeprecatedObject.cs
|
||||
src/Org.OpenAPITools/Model/Dog.cs
|
||||
src/Org.OpenAPITools/Model/DogAllOf.cs
|
||||
|
||||
@@ -181,6 +181,7 @@ Class | Method | HTTP request | Description
|
||||
- [Model.ClassModel](docs/ClassModel.md)
|
||||
- [Model.ComplexQuadrilateral](docs/ComplexQuadrilateral.md)
|
||||
- [Model.DanishPig](docs/DanishPig.md)
|
||||
- [Model.DateOnlyClass](docs/DateOnlyClass.md)
|
||||
- [Model.DeprecatedObject](docs/DeprecatedObject.md)
|
||||
- [Model.Dog](docs/Dog.md)
|
||||
- [Model.DogAllOf](docs/DogAllOf.md)
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
# Org.OpenAPITools.Model.DateOnlyClass
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**DateOnlyProperty** | **DateTime** | | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
||||
@@ -0,0 +1,70 @@
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Api;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing DateOnlyClass
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class DateOnlyClassTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for DateOnlyClass
|
||||
//private DateOnlyClass instance;
|
||||
|
||||
public DateOnlyClassTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of DateOnlyClass
|
||||
//instance = new DateOnlyClass();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of DateOnlyClass
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyClassInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" DateOnlyClass
|
||||
//Assert.IsType<DateOnlyClass>(instance);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'DateOnlyProperty'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateOnlyPropertyTest()
|
||||
{
|
||||
// TODO unit test for the property 'DateOnlyProperty'
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,121 @@
|
||||
/*
|
||||
* OpenAPI Petstore
|
||||
*
|
||||
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0.0
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Converters;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using OpenAPIDateConverter = Org.OpenAPITools.Client.OpenAPIDateConverter;
|
||||
using OpenAPIClientUtils = Org.OpenAPITools.Client.ClientUtils;
|
||||
|
||||
namespace Org.OpenAPITools.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// DateOnlyClass
|
||||
/// </summary>
|
||||
[DataContract(Name = "DateOnlyClass")]
|
||||
public partial class DateOnlyClass : IEquatable<DateOnlyClass>, IValidatableObject
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="DateOnlyClass" /> class.
|
||||
/// </summary>
|
||||
/// <param name="dateOnlyProperty">dateOnlyProperty.</param>
|
||||
public DateOnlyClass(DateTime dateOnlyProperty = default(DateTime))
|
||||
{
|
||||
this.DateOnlyProperty = dateOnlyProperty;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets DateOnlyProperty
|
||||
/// </summary>
|
||||
[DataMember(Name = "dateOnlyProperty", EmitDefaultValue = false)]
|
||||
[JsonConverter(typeof(OpenAPIDateConverter))]
|
||||
public DateTime DateOnlyProperty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Returns the string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>String presentation of the object</returns>
|
||||
public override string ToString()
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.Append("class DateOnlyClass {\n");
|
||||
sb.Append(" DateOnlyProperty: ").Append(DateOnlyProperty).Append("\n");
|
||||
sb.Append("}\n");
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the JSON string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>JSON string presentation of the object</returns>
|
||||
public virtual string ToJson()
|
||||
{
|
||||
return Newtonsoft.Json.JsonConvert.SerializeObject(this, Newtonsoft.Json.Formatting.Indented);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if objects are equal
|
||||
/// </summary>
|
||||
/// <param name="input">Object to be compared</param>
|
||||
/// <returns>Boolean</returns>
|
||||
public override bool Equals(object input)
|
||||
{
|
||||
return OpenAPIClientUtils.compareLogic.Compare(this, input as DateOnlyClass).AreEqual;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if DateOnlyClass instances are equal
|
||||
/// </summary>
|
||||
/// <param name="input">Instance of DateOnlyClass to be compared</param>
|
||||
/// <returns>Boolean</returns>
|
||||
public bool Equals(DateOnlyClass input)
|
||||
{
|
||||
return OpenAPIClientUtils.compareLogic.Compare(this, input).AreEqual;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the hash code
|
||||
/// </summary>
|
||||
/// <returns>Hash code</returns>
|
||||
public override int GetHashCode()
|
||||
{
|
||||
unchecked // Overflow is fine, just wrap
|
||||
{
|
||||
int hashCode = 41;
|
||||
if (this.DateOnlyProperty != null)
|
||||
{
|
||||
hashCode = (hashCode * 59) + this.DateOnlyProperty.GetHashCode();
|
||||
}
|
||||
return hashCode;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To validate all properties of the instance
|
||||
/// </summary>
|
||||
/// <param name="validationContext">Validation context</param>
|
||||
/// <returns>Validation Result</returns>
|
||||
public IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult> Validate(ValidationContext validationContext)
|
||||
{
|
||||
yield break;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user