ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.390.7

This commit is contained in:
speakeasybot
2024-09-06 00:00:16 +00:00
parent e2d3ad2f38
commit 2b03eae316
225 changed files with 3354 additions and 1125 deletions

View File

@@ -16,24 +16,24 @@ namespace PlexAPI.Models.Requests
{
[JsonProperty("protocol")]
public string? Protocol { get; set; }
public string Protocol { get; set; } = default!;
[JsonProperty("address")]
public string? Address { get; set; }
public string Address { get; set; } = default!;
[JsonProperty("port")]
public double? Port { get; set; }
public double Port { get; set; } = default!;
[JsonProperty("uri")]
public string? Uri { get; set; }
public string Uri { get; set; } = default!;
[JsonProperty("local")]
public bool? Local { get; set; }
public bool Local { get; set; } = default!;
[JsonProperty("relay")]
public bool? Relay { get; set; }
public bool Relay { get; set; } = default!;
[JsonProperty("IPv6")]
public bool? IPv6 { get; set; }
public bool IPv6 { get; set; } = default!;
}
}