Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(webapi): Add ExternalReference to dialog search result #1384

Merged
merged 4 commits into from
Nov 4, 2024
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
12 changes: 11 additions & 1 deletion docs/schema/V1/swagger.verified.json
Original file line number Diff line number Diff line change
Expand Up @@ -1337,6 +1337,11 @@
"nullable": true,
"type": "string"
},
"externalReference": {
"description": "Arbitrary string with a service-specific reference to an external system or service.\n \nRefer to the service-specific documentation provided by the service owner for details (if in use).",
"nullable": true,
"type": "string"
},
"guiAttachmentCount": {
"description": "The number of attachments in the dialog made available for browser-based frontends.",
"format": "int32",
Expand Down Expand Up @@ -4352,6 +4357,11 @@
"nullable": true,
"type": "string"
},
"externalReference": {
"description": "Arbitrary string with a service-specific reference to an external system or service.\n \nRefer to the service-specific documentation provided by the service owner for details (if in use).",
"nullable": true,
"type": "string"
},
"guiAttachmentCount": {
"description": "The number of attachments in the dialog made available for browser-based frontends.",
"format": "int32",
Expand Down Expand Up @@ -7445,4 +7455,4 @@
"url": "https://altinn-dev-api.azure-api.net/dialogporten"
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@ public class DialogDtoBase
/// </summary>
public string? ExtendedStatus { get; set; }

/// <summary>
/// Arbitrary string with a service-specific reference to an external system or service.
///
/// Refer to the service-specific documentation provided by the service owner for details (if in use).
/// </summary>
public string? ExternalReference { get; set; }

/// <summary>
/// The date and time when the dialog was created.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,13 @@ public class DialogDtoBase
/// </summary>
public string? ExtendedStatus { get; set; }

/// <summary>
/// Arbitrary string with a service-specific reference to an external system or service.
///
/// Refer to the service-specific documentation provided by the service owner for details (if in use).
/// </summary>
public string? ExternalReference { get; set; }

/// <summary>
/// The date and time when the dialog was created.
/// </summary>
Expand Down
Loading