Files
plexruby/lib/plex_ruby_sdk/models/operations/mailingliststatus.rb

22 lines
452 B
Ruby

# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
# typed: true
# frozen_string_literal: true
module PlexRubySDK
module Operations
MAILING_LIST_STATUS_SERVERS = [
'https://plex.tv/api/v2/'
].freeze
# MailingListStatus - Your current mailing list status
class MailingListStatus < T::Enum
enums do
ACTIVE = new('active')
UNSUBSCRIBED = new('unsubscribed')
end
end
end
end