-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the extracted generation templates (#98)
* Add the extracted generation templates
- Loading branch information
1 parent
8e62ec7
commit 27a6a6e
Showing
131 changed files
with
16,663 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
{{>partial_header}} | ||
|
||
using System; | ||
using Newtonsoft.Json; | ||
using Newtonsoft.Json.Serialization; | ||
|
||
namespace {{packageName}}.{{modelPackage}} | ||
{ | ||
/// <summary> | ||
/// Abstract base class for oneOf, anyOf schemas in the OpenAPI specification | ||
/// </summary> | ||
{{>visibility}} abstract partial class AbstractOpenAPISchema | ||
{ | ||
/// <summary> | ||
/// Custom JSON serializer | ||
/// </summary> | ||
static public readonly JsonSerializerSettings SerializerSettings = new JsonSerializerSettings | ||
{ | ||
// OpenAPI generated types generally hide default constructors. | ||
ConstructorHandling = ConstructorHandling.AllowNonPublicDefaultConstructor, | ||
MissingMemberHandling = MissingMemberHandling.Error, | ||
ContractResolver = new DefaultContractResolver | ||
{ | ||
NamingStrategy = new CamelCaseNamingStrategy | ||
{ | ||
OverrideSpecifiedNames = false | ||
} | ||
} | ||
}; | ||
|
||
/// <summary> | ||
/// Custom JSON serializer for objects with additional properties | ||
/// </summary> | ||
static public readonly JsonSerializerSettings AdditionalPropertiesSerializerSettings = new JsonSerializerSettings | ||
{ | ||
// OpenAPI generated types generally hide default constructors. | ||
ConstructorHandling = ConstructorHandling.AllowNonPublicDefaultConstructor, | ||
MissingMemberHandling = MissingMemberHandling.Ignore, | ||
ContractResolver = new DefaultContractResolver | ||
{ | ||
NamingStrategy = new CamelCaseNamingStrategy | ||
{ | ||
OverrideSpecifiedNames = false | ||
} | ||
} | ||
}; | ||
|
||
/// <summary> | ||
/// Gets or Sets the actual instance | ||
/// </summary> | ||
public abstract Object ActualInstance { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or Sets IsNullable to indicate whether the instance is nullable | ||
/// </summary> | ||
public bool IsNullable { get; protected set; } | ||
|
||
/// <summary> | ||
/// Gets or Sets the schema type, which can be either `oneOf` or `anyOf` | ||
/// </summary> | ||
public string SchemaType { get; protected set; } | ||
|
||
/// <summary> | ||
/// Converts the instance into JSON string. | ||
/// </summary> | ||
public abstract string ToJson(); | ||
} | ||
} |
Oops, something went wrong.