Class ReportLinks
Represents the HAL links returned with a report response.
public record ReportLinks : IEquatable<ReportLinks>
- Inheritance
-
ReportLinks
- Implements
- Inherited Members
Constructors
ReportLinks(ReportLink, Maybe<ReportLink>)
Represents the HAL links returned with a report response.
public ReportLinks(ReportLink Self, Maybe<ReportLink> DownloadReport)
Parameters
SelfReportLinkLink to the report itself.
DownloadReportMaybe<ReportLink>Link to download the report file, if available.
Properties
DownloadReport
Link to download the report file, if available.
[JsonPropertyName("download_report")]
[JsonConverter(typeof(MaybeJsonConverter<ReportLink>))]
public Maybe<ReportLink> DownloadReport { get; init; }
Property Value
Self
Link to the report itself.
[JsonPropertyName("self")]
public ReportLink Self { get; init; }