- Implement tests for basic and bearer authentication headers in `test_auth.py`. - Create tests for the `EasybillWebhookParser` in `test_webhooks.py`, covering JSON and form-encoded payloads, as well as a generic parse and acknowledgement method.
1.1 KiB
1.1 KiB
PositionGroup
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | [optional] [default to 'null'] | |
| login_id | int | [optional] [readonly] | |
| name | str | ||
| number | str | ||
| display_name | str | [optional] [readonly] | |
| id | int | [optional] [readonly] |
Example
from easybill_generated_sync.models.position_group import PositionGroup
# TODO update the JSON string below
json = "{}"
# create an instance of PositionGroup from a JSON string
position_group_instance = PositionGroup.from_json(json)
# print the JSON string representation of the object
print(PositionGroup.to_json())
# convert the object into a dict
position_group_dict = position_group_instance.to_dict()
# create an instance of PositionGroup from a dict
position_group_from_dict = PositionGroup.from_dict(position_group_dict)