-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modified get tickets api to handle filter by policy ids
- Loading branch information
1 parent
e5d164c
commit f60fed5
Showing
34 changed files
with
3,306 additions
and
8 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
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# GetTenantUserProfileResponse | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**profile_pic_url** | [**ProfilePicUrl**](ProfilePicUrl.md) | | [optional] | ||
**last_login** | [**LastLogin**](LastLogin.md) | | [optional] | ||
**status** | [**UserStatus**](UserStatus.md) | Status of the user like ACTIVE, BLOCKED etc. | [optional] | ||
**first_name** | [**FirstName**](FirstName.md) | | | ||
**middle_name** | [**MiddleName**](MiddleName.md) | | [optional] | ||
**last_name** | [**LastName**](LastName.md) | | | ||
**email** | [**Email**](Email.md) | | [optional] | ||
**mobile_country_code** | [**MobileCountryCode**](MobileCountryCode.md) | | [optional] | ||
**mobile_number** | [**MobileNumber**](MobileNumber.md) | | [optional] | ||
**persona** | [**CreateTenantUserRequestPersona**](CreateTenantUserRequestPersona.md) | | [optional] | ||
**role** | [**UserRole**](UserRole.md) | Role of the user in the tenant | [optional] | ||
**job_title** | [**JobTitle**](JobTitle.md) | | [optional] | ||
**manager** | [**Manager**](Manager.md) | | [optional] | ||
**city** | [**City**](City.md) | | [optional] | ||
**state** | [**State**](State.md) | | [optional] | ||
**country** | [**Country**](Country.md) | | [optional] | ||
**display_language** | [**DisplayLanguage**](DisplayLanguage.md) | | [optional] | ||
**preferred_currency** | [**PreferredCurrency**](PreferredCurrency.md) | | [optional] | ||
**timezone** | [**Timezone**](Timezone.md) | | [optional] | ||
**display_date_format** | [**DisplayDateFormat**](DisplayDateFormat.md) | | [optional] | ||
**display_time_format** | [**DisplayTimeFormat**](DisplayTimeFormat.md) | | [optional] | ||
**sources** | [**Sources**](Sources.md) | | [optional] | ||
**ol_user_id** | **object** | Unique onelens identifier for the user | | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.get_tenant_user_profile_response import GetTenantUserProfileResponse | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of GetTenantUserProfileResponse from a JSON string | ||
get_tenant_user_profile_response_instance = GetTenantUserProfileResponse.from_json(json) | ||
# print the JSON string representation of the object | ||
print(GetTenantUserProfileResponse.to_json()) | ||
|
||
# convert the object into a dict | ||
get_tenant_user_profile_response_dict = get_tenant_user_profile_response_instance.to_dict() | ||
# create an instance of GetTenantUserProfileResponse from a dict | ||
get_tenant_user_profile_response_form_dict = get_tenant_user_profile_response.from_dict(get_tenant_user_profile_response_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# PasswordChangeEmailRequest | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**ol_user_id** | **str** | Unique onelens identifier for the user | | ||
**tenant_id** | **str** | The unique identifier of the tenant | | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.password_change_email_request import PasswordChangeEmailRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of PasswordChangeEmailRequest from a JSON string | ||
password_change_email_request_instance = PasswordChangeEmailRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print(PasswordChangeEmailRequest.to_json()) | ||
|
||
# convert the object into a dict | ||
password_change_email_request_dict = password_change_email_request_instance.to_dict() | ||
# create an instance of PasswordChangeEmailRequest from a dict | ||
password_change_email_request_form_dict = password_change_email_request.from_dict(password_change_email_request_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# PasswordChangeEmailResponse | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**message** | **str** | Message for password change email response | | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.password_change_email_response import PasswordChangeEmailResponse | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of PasswordChangeEmailResponse from a JSON string | ||
password_change_email_response_instance = PasswordChangeEmailResponse.from_json(json) | ||
# print the JSON string representation of the object | ||
print(PasswordChangeEmailResponse.to_json()) | ||
|
||
# convert the object into a dict | ||
password_change_email_response_dict = password_change_email_response_instance.to_dict() | ||
# create an instance of PasswordChangeEmailResponse from a dict | ||
password_change_email_response_form_dict = password_change_email_response.from_dict(password_change_email_response_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
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
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
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# ResponseGetTenantUserProfileResponse | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**data** | [**GetTenantUserProfileResponse**](GetTenantUserProfileResponse.md) | | | ||
**message** | **str** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.response_get_tenant_user_profile_response import ResponseGetTenantUserProfileResponse | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of ResponseGetTenantUserProfileResponse from a JSON string | ||
response_get_tenant_user_profile_response_instance = ResponseGetTenantUserProfileResponse.from_json(json) | ||
# print the JSON string representation of the object | ||
print(ResponseGetTenantUserProfileResponse.to_json()) | ||
|
||
# convert the object into a dict | ||
response_get_tenant_user_profile_response_dict = response_get_tenant_user_profile_response_instance.to_dict() | ||
# create an instance of ResponseGetTenantUserProfileResponse from a dict | ||
response_get_tenant_user_profile_response_form_dict = response_get_tenant_user_profile_response.from_dict(response_get_tenant_user_profile_response_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# ResponsePasswordChangeEmailResponse | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**data** | [**PasswordChangeEmailResponse**](PasswordChangeEmailResponse.md) | | | ||
**message** | **str** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.response_password_change_email_response import ResponsePasswordChangeEmailResponse | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of ResponsePasswordChangeEmailResponse from a JSON string | ||
response_password_change_email_response_instance = ResponsePasswordChangeEmailResponse.from_json(json) | ||
# print the JSON string representation of the object | ||
print(ResponsePasswordChangeEmailResponse.to_json()) | ||
|
||
# convert the object into a dict | ||
response_password_change_email_response_dict = response_password_change_email_response_instance.to_dict() | ||
# create an instance of ResponsePasswordChangeEmailResponse from a dict | ||
response_password_change_email_response_form_dict = response_password_change_email_response.from_dict(response_password_change_email_response_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# StorageLensConfig | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**name** | **str** | | [optional] | ||
**region** | **str** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.storage_lens_config import StorageLensConfig | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of StorageLensConfig from a JSON string | ||
storage_lens_config_instance = StorageLensConfig.from_json(json) | ||
# print the JSON string representation of the object | ||
print(StorageLensConfig.to_json()) | ||
|
||
# convert the object into a dict | ||
storage_lens_config_dict = storage_lens_config_instance.to_dict() | ||
# create an instance of StorageLensConfig from a dict | ||
storage_lens_config_form_dict = storage_lens_config.from_dict(storage_lens_config_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
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
Oops, something went wrong.