//------------------------------------------------------------------------------
//
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
//
// Changes to this file may cause incorrect behavior and will be lost when
// the code is regenerated.
//
//------------------------------------------------------------------------------
#nullable enable
namespace LukeHagar.PlexAPI.SDK.Models.Components
{
using LukeHagar.PlexAPI.SDK.Models.Components;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
public class UserPlexAccountSubscription
{
///
/// List of features allowed on your Plex Pass subscription
///
[JsonProperty("features")]
public List? Features { get; set; }
///
/// If the account's Plex Pass subscription is active
///
[JsonProperty("active")]
public bool? Active { get; set; }
///
/// Date the account subscribed to Plex Pass
///
[JsonProperty("subscribedAt")]
public string? SubscribedAt { get; set; } = null;
///
/// String representation of subscriptionActive
///
[JsonProperty("status")]
public UserPlexAccountSubscriptionsStatus? Status { get; set; }
///
/// Payment service used for your Plex Pass subscription
///
[JsonProperty("paymentService")]
public string? PaymentService { get; set; } = null;
///
/// Name of Plex Pass subscription plan
///
[JsonProperty("plan")]
public string? Plan { get; set; } = null;
}
}