ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.378.1

This commit is contained in:
speakeasybot
2024-08-25 00:10:39 +00:00
parent 322299ad95
commit cc8bc7366d
94 changed files with 978 additions and 335 deletions

View File

@@ -12,7 +12,6 @@ namespace PlexAPI.Models.Requests
using Newtonsoft.Json;
using PlexAPI.Models.Requests;
using PlexAPI.Utils;
using System.Collections.Generic;
public class PastSubscription
{
@@ -63,9 +62,9 @@ namespace PlexAPI.Models.Requests
public string? Transfer { get; set; }
[JsonProperty("state")]
public PostUsersSigninDataState State { get; set; } = default!;
public PostSignInState State { get; set; } = default!;
[JsonProperty("billing")]
public List<Billing> Billing { get; set; } = default!;
public Billing Billing { get; set; } = default!;
}
}