Skip to content

Commit

Permalink
Adding options field to the CaptureCreateRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
Filip5991 committed Oct 28, 2022
1 parent 2031b31 commit 7bab35c
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,13 @@ public class CaptureWebsiteCreateRequest
/// </summary>
[JsonProperty("timeout", NullValueHandling = NullValueHandling.Ignore)]
public int? Timeout { get; set; }

/// <summary>
/// Conversion and engine specific options. Depends on input_format and output_format.
/// Select input and output format above to show additional conversion options.
/// </summary>
[JsonExtensionData]
[JsonProperty("options", NullValueHandling = NullValueHandling.Ignore)]
public Dictionary<string, object> Options { get; set; }
}
}

0 comments on commit 7bab35c

Please sign in to comment.