Sha256: 4730f2082f7f4e1fd0808432df837780320bdf5cf19fe94e82ba75b2679fba7c

Contents?: true

Size: 860 Bytes

Versions: 1

Compression:

Stored size: 860 Bytes

Contents

module TD::Types
  # Theme colors for a payment form.
  #
  # @attr background_color [Integer] A color of the payment form background in the RGB24 format.
  # @attr text_color [Integer] A color of text in the RGB24 format.
  # @attr hint_color [Integer] A color of hints in the RGB24 format.
  # @attr link_color [Integer] A color of links in the RGB24 format.
  # @attr button_color [Integer] A color of thebuttons in the RGB24 format.
  # @attr button_text_color [Integer] A color of text on the buttons in the RGB24 format.
  class PaymentFormTheme < Base
    attribute :background_color, TD::Types::Integer
    attribute :text_color, TD::Types::Integer
    attribute :hint_color, TD::Types::Integer
    attribute :link_color, TD::Types::Integer
    attribute :button_color, TD::Types::Integer
    attribute :button_text_color, TD::Types::Integer
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/payment_form_theme.rb