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
2 changes: 1 addition & 1 deletion docs/AddDetailsToAlertPayload.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Name | Type | Description | Notes
**user** | **str** | Display name of the request owner | [optional]
**note** | **str** | Additional note that will be added while creating the alert | [optional]
**source** | **str** | Source field of the alert. Default value is IP address of the incoming request | [optional]
**details** | **dict(str, str)** | Key-value pairs to add as custom property into alert. You can refer here for example values |
**details** | **dict(str, str)** | Key-value pairs to add as custom property into alert. |

[[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: 1 addition & 1 deletion docs/AddDetailsToAlertPayloadAllOf.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**details** | **dict(str, str)** | Key-value pairs to add as custom property into alert. You can refer here for example values |
**details** | **dict(str, str)** | Key-value pairs to add as custom property into alert. |

[[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: 1 addition & 1 deletion opsgenie-oas.json
Original file line number Diff line number Diff line change
Expand Up @@ -4839,7 +4839,7 @@
"additionalProperties": {
"type": "string"
},
"description": "Key-value pairs to add as custom property into alert. You can refer here for example values"
"description": "Key-value pairs to add as custom property into alert."
}
}
}
Expand Down
3 changes: 1 addition & 2 deletions opsgenie-oas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8786,8 +8786,7 @@ components:
type: object
additionalProperties:
type: string
description: Key-value pairs to add as custom property into alert. You
can refer here for example values
description: Key-value pairs to add as custom property into alert.
x-opsgenie-domain: alert
AlertRequestStatus:
type: object
Expand Down
4 changes: 2 additions & 2 deletions opsgenie_sdk/api/alert/add_details_to_alert_payload.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def source(self, source):
def details(self):
"""Gets the details of this AddDetailsToAlertPayload. # noqa: E501

Key-value pairs to add as custom property into alert. You can refer here for example values # noqa: E501
Key-value pairs to add as custom property into alert. # noqa: E501

:return: The details of this AddDetailsToAlertPayload. # noqa: E501
:rtype: dict(str, str)
Expand All @@ -146,7 +146,7 @@ def details(self):
def details(self, details):
"""Sets the details of this AddDetailsToAlertPayload.

Key-value pairs to add as custom property into alert. You can refer here for example values # noqa: E501
Key-value pairs to add as custom property into alert. # noqa: E501

:param details: The details of this AddDetailsToAlertPayload. # noqa: E501
:type: dict(str, str)
Expand Down
4 changes: 2 additions & 2 deletions opsgenie_sdk/api/alert/add_details_to_alert_payload_all_of.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def __init__(self, details=None): # noqa: E501
def details(self):
"""Gets the details of this AddDetailsToAlertPayloadAllOf. # noqa: E501

Key-value pairs to add as custom property into alert. You can refer here for example values # noqa: E501
Key-value pairs to add as custom property into alert. # noqa: E501

:return: The details of this AddDetailsToAlertPayloadAllOf. # noqa: E501
:rtype: dict(str, str)
Expand All @@ -62,7 +62,7 @@ def details(self):
def details(self, details):
"""Sets the details of this AddDetailsToAlertPayloadAllOf.

Key-value pairs to add as custom property into alert. You can refer here for example values # noqa: E501
Key-value pairs to add as custom property into alert. # noqa: E501

:param details: The details of this AddDetailsToAlertPayloadAllOf. # noqa: E501
:type: dict(str, str)
Expand Down