-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactored Banking Webhooks to use Jackson (#1076)
- Loading branch information
Showing
96 changed files
with
6,638 additions
and
16,342 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Configuration webhooks | ||
* | ||
* The version of the OpenAPI document: 1 | ||
* Contact: [email protected] | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
|
@@ -17,9 +17,12 @@ | |
import java.util.Map; | ||
import jakarta.ws.rs.core.GenericType; | ||
|
||
import com.fasterxml.jackson.annotation.JsonValue; | ||
|
||
/** | ||
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec | ||
*/ | ||
|
||
public abstract class AbstractOpenApiSchema { | ||
|
||
// store the actual instance of the schema/object | ||
|
@@ -48,7 +51,7 @@ public AbstractOpenApiSchema(String schemaType, Boolean isNullable) { | |
* | ||
* @return an instance of the actual schema/object | ||
*/ | ||
//@JsonValue | ||
@JsonValue | ||
public Object getActualInstance() {return instance;} | ||
|
||
/** | ||
|
Oops, something went wrong.