Show / Hide Table of Contents

Class ReportSummary

The model of a single report.

Inheritance
object
ReportSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MarketplaceService.Models
Assembly: OCI.DotNetSDK.Marketplace.dll
Syntax
public class ReportSummary

Properties

Columns

Declaration
[Required(ErrorMessage = "Columns is required.")]
[JsonProperty(PropertyName = "columns")]
public List<string> Columns { get; set; }
Property Value
Type Description
List<string>

The columns in the report.

Remarks

Required

Content

Declaration
[Required(ErrorMessage = "Content is required.")]
[JsonProperty(PropertyName = "content")]
public string Content { get; set; }
Property Value
Type Description
string

The contents of the report in comma-separated values (CSV) file format.

Remarks

Required

Date

Declaration
[Required(ErrorMessage = "Date is required.")]
[JsonProperty(PropertyName = "date")]
public DateTime? Date { get; set; }
Property Value
Type Description
DateTime?

The date of the report.

Remarks

Required

ReportType

Declaration
[Required(ErrorMessage = "ReportType is required.")]
[JsonProperty(PropertyName = "reportType")]
public string ReportType { get; set; }
Property Value
Type Description
string

The type of report.

Remarks

Required

In this article
Back to top