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
5 changes: 3 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ components:
type: string
GetIssueIncludeQueryParameter:
description: Comma-separated list of relationship objects that should be included
in the response.
in the response. Possible values are `assignee`, `case`, and `team_owners`.
explode: false
in: query
name: include
Expand Down Expand Up @@ -996,7 +996,8 @@ components:
$ref: '#/components/schemas/ServiceDefinitionSchemaVersions'
SearchIssuesIncludeQueryParameter:
description: Comma-separated list of relationship objects that should be included
in the response.
in the response. Possible values are `issue`, `issue.assignee`, `issue.case`,
and `issue.team_owners`.
explode: false
in: query
name: include
Expand Down
8 changes: 4 additions & 4 deletions src/datadogV2/api/api_error_tracking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ use std::io::Write;
#[non_exhaustive]
#[derive(Clone, Default, Debug)]
pub struct GetIssueOptionalParams {
/// Comma-separated list of relationship objects that should be included in the response.
/// Comma-separated list of relationship objects that should be included in the response. Possible values are `assignee`, `case`, and `team_owners`.
pub include: Option<Vec<crate::datadogV2::model::GetIssueIncludeQueryParameterItem>>,
}

impl GetIssueOptionalParams {
/// Comma-separated list of relationship objects that should be included in the response.
/// Comma-separated list of relationship objects that should be included in the response. Possible values are `assignee`, `case`, and `team_owners`.
pub fn include(
mut self,
value: Vec<crate::datadogV2::model::GetIssueIncludeQueryParameterItem>,
Expand All @@ -33,12 +33,12 @@ impl GetIssueOptionalParams {
#[non_exhaustive]
#[derive(Clone, Default, Debug)]
pub struct SearchIssuesOptionalParams {
/// Comma-separated list of relationship objects that should be included in the response.
/// Comma-separated list of relationship objects that should be included in the response. Possible values are `issue`, `issue.assignee`, `issue.case`, and `issue.team_owners`.
pub include: Option<Vec<crate::datadogV2::model::SearchIssuesIncludeQueryParameterItem>>,
}

impl SearchIssuesOptionalParams {
/// Comma-separated list of relationship objects that should be included in the response.
/// Comma-separated list of relationship objects that should be included in the response. Possible values are `issue`, `issue.assignee`, `issue.case`, and `issue.team_owners`.
pub fn include(
mut self,
value: Vec<crate::datadogV2::model::SearchIssuesIncludeQueryParameterItem>,
Expand Down