Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MergeATSClient/api/link_token_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
validate_and_convert_types
)
from MergeATSClient.model.end_user_details_request import EndUserDetailsRequest
from MergeATSClient.model.end_user_details import EndUserDetails
from MergeATSClient.model.link_token import LinkToken


Expand Down
1 change: 1 addition & 0 deletions MergeATSClient/api/passthrough_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
validate_and_convert_types
)
from MergeATSClient.model.data_passthrough_request import DataPassthroughRequest
from MergeATSClient.model.data_passthrough import DataPassthrough
from MergeATSClient.model.remote_response import RemoteResponse


Expand Down
6 changes: 6 additions & 0 deletions MergeATSClient/model/candidate_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ def openapi_types():
'email_addresses': ([EmailAddressRequest],), # noqa: E501
'urls': ([UrlRequest],), # noqa: E501
'tags': ([str],), # noqa: E501
'applications': ([str],), # noqa: E501
'attachments': ([str],), # noqa: E501
}

@cached_property
Expand All @@ -122,6 +124,8 @@ def discriminator():
'email_addresses': 'email_addresses', # noqa: E501
'urls': 'urls', # noqa: E501
'tags': 'tags', # noqa: E501
'applications': 'applications', # noqa: E501
'attachments': 'attachments', # noqa: E501
}

_composed_schemas = {}
Expand Down Expand Up @@ -185,6 +189,8 @@ def __init__(self, *args, **kwargs): # noqa: E501
email_addresses ([EmailAddressRequest]): [optional] # noqa: E501
urls ([UrlRequest]): [optional] # noqa: E501
tags ([str]): [optional] # noqa: E501
applications ([str]): [optional] # noqa: E501
attachments ([str]): [optional] # noqa: E501
"""

_check_type = kwargs.pop('_check_type', True)
Expand Down
4 changes: 2 additions & 2 deletions docs/Candidate.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ Name | Type | Description | Notes
**email_addresses** | [**[EmailAddress]**](EmailAddress.md) | | [optional]
**urls** | [**[Url]**](Url.md) | | [optional]
**tags** | **[str]** | | [optional]
**applications** | **[str]** | | [optional] [readonly]
**attachments** | **[str]** | | [optional] [readonly]
**applications** | **[str]** | | [optional]
**attachments** | **[str]** | | [optional]
**remote_data** | [**[RemoteData], none_type**](RemoteData.md) | | [optional] [readonly]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
Expand Down
2 changes: 2 additions & 0 deletions docs/CandidateRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Name | Type | Description | Notes
**email_addresses** | [**[EmailAddressRequest]**](EmailAddressRequest.md) | | [optional]
**urls** | [**[UrlRequest]**](UrlRequest.md) | | [optional]
**tags** | **[str]** | | [optional]
**applications** | **[str]** | | [optional]
**attachments** | **[str]** | | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
2 changes: 2 additions & 0 deletions docs/CandidatesApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ with MergeATSClient.ApiClient(configuration) as api_client:
email_addresses=[{"value":"hello@merge.dev","email_address_type":"PERSONAL"}],
urls=[{"value":"http://alturl.com/p749b","url_type":"BLOG"}],
tags=["High-Priority"],
applications=["29eb9867-ce2a-403f-b8ce-f2844b89f078","b4d08e5c-de00-4d64-a29f-66addac9af99","4ff877d2-fb3e-4a5b-a7a5-168ddf2ffa56"],
attachments=["bea08964-32b4-4a20-8bb4-2612ba09de1d"],
) # CandidateRequest | (optional)

# example passing only required values which don't have defaults set
Expand Down