Skip to content

Commit

Permalink
Merge pull request #16 from Filip5991/master
Browse files Browse the repository at this point in the history
Adding options field to the CaptureCreateRequest
  • Loading branch information
josiasmontag authored Oct 28, 2022
2 parents 2031b31 + 7bab35c commit f4cf853
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 f4cf853

Please sign in to comment.