You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(union-types): adds support for OneOf and AnyOf (#20)
This commit adds support for union-types that are OneOf and AnyOf types by providing the base type by the name of the UnionType which is an abstract class. This concrete implementation of this class are OneOf, AnyOf and LeafType classes which are part of the core library.
|[`HttpClient`](apimatic_core_interfaces/client/http_client.py)| To save both Request and Response after the completion of response |
21
-
|[`ResponseFactory`](apimatic_core_interfaces/factories/response_factory.py)| To convert the client-adapter response into a custom HTTP response |
22
-
|[`Authentication`](apimatic_core_interfaces/types/authentication.py)| To setup methods for the validation and application of the required authentication scheme|
|[`HttpClient`](apimatic_core_interfaces/client/http_client.py)| To save both Request and Response after the completion of response |
21
+
|[`ResponseFactory`](apimatic_core_interfaces/factories/response_factory.py)| To convert the client-adapter response into a custom HTTP response |
22
+
|[`Authentication`](apimatic_core_interfaces/types/authentication.py)| To setup methods for the validation and application of the required authentication scheme |
23
+
|[`UnionType`](apimatic_core_interfaces/types/union_type.py)| To setup methods for the validation and deserialization of OneOf/AnyOf union types |
0 commit comments