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

21 lines
466 B
Ruby

# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
# typed: true
# frozen_string_literal: true
module PlexRubySDK
module Models
module Operations
# MinSize - images are always scaled proportionally. A value of '1' in minSize will make the smaller native dimension the dimension resized against.
class MinSize < T::Enum
enums do
ZERO = new(0)
ONE = new(1)
end
end
end
end
end