Skip to content
Open
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
14 changes: 13 additions & 1 deletion sdk/PowerBI.Api/Source/Models/Report.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,19 @@ public Report()
/// Gets or sets the dataset id
/// </summary>
[JsonProperty(PropertyName = "datasetId")]
public string DatasetId { get; set; }
public string DatasetId { get; set; }

/// <summary>
/// Gets or sets if the report is a custom one (true) or a system one (false)
/// </summary>
[JsonProperty(PropertyName = "isFromPbix")]
public string IsFromPbix { get; set; }

/// <summary>
/// Gets or sets if the report is owned by the user
/// </summary>
[JsonProperty(PropertyName = "isOwnedByMe")]
public string IsOwnedByMe { get; set; }

/// <summary>
/// Validate the object.
Expand Down