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
Each API class function is decorated with a `@endpoint.<method>(<path>)` endpoint decorator. This decorator converts the original function into an instance of the `EndpointHandler` class at runtime. The `EndpointHandler` object acts as a proxy to a per-endpoint `EndpointFunc` object, which is also created at runtime and is responsible for handling the actual API calls via its base class's `__call__()` method. Additionally, the `EndpointFunc` object provides various capabilities and attributes related to the endpoint.
494
494
495
-
eg. The Login API is accessible via `client.AUTH.login()` API function, which is actually an instance of
495
+
eg. The Login API is accessible via `client.Auth.login()` API function, which is actually an instance of
496
496
`AuthAPILoginEndpointFunc` class returned by its associated `EndpointHandler` obj.
497
497
498
498
```pycon
499
-
>>> client.AUTH.login
499
+
>>> client.Auth.login
500
500
<openapi_test_client.libraries.api.api_functions.endpoint.AuthAPILoginEndpointFunc object at 0x1074abf10>
501
501
(mapped to: <function AuthAPI.login at 0x10751c360>)
502
502
```
@@ -511,9 +511,9 @@ The endpoint function is also accessible directly from the API class:
511
511
512
512
Various endpoint data is available from the endpoint function via `endpoint` property:
@@ -785,7 +785,7 @@ Here are some comparisons between regular models and pydantic models:
785
785
'metadata': Field(name='metadata',type=typing.Optional[openapi_test_client.clients.demo_app.models.users.Metadata],default=<object object at 0x107b410b0>,default_factory=<dataclasses._MISSING_TYPE object at 0x107ea61d0>,init=True,repr=True,hash=None,compare=True,metadata=mappingproxy({}),kw_only=True,_field_type=_FIELD)}
786
786
>>>
787
787
>>> # Make an API request with the invalid parameter values
788
-
>>> r = client.USERS.create_user(first_name=123, email="foo", role="something", metadata=Metadata(social_links=SocialLinks(facebook="test")), extra=123)
788
+
>>> r = client.Users.create_user(first_name=123, email="foo", role="something", metadata=Metadata(social_links=SocialLinks(facebook="test")), extra=123)
789
789
2024-01-01T00:00:00.741-0800 - The request contains one or more parameters UsersAPI.create_user() does not expect:
790
790
- extra
791
791
2024-01-01T00:00:00.742-0800 - request: POST http://127.0.0.1:5000/v1/users
@@ -874,7 +874,7 @@ Here are some comparisons between regular models and pydantic models:
874
874
- Pydantic model (Validation will be done on the client-side)
0 commit comments