Sha256: 6e4cf2fb3e6bc9f706562b96b8966f414d66a7bfce18b07b063f4275be9d6db7

Contents?: true

Size: 590 Bytes

Versions: 3

Compression:

Stored size: 590 Bytes

Contents

# frozen_string_literal: true

module YouCanBookMe
  # YouCanBookMe's Warning model.
  class Warning
    include ModelUtils

    # @return [String]
    attr_accessor :code
    # @return [String]
    attr_accessor :fixUrl
    # @return [String]
    attr_accessor :fixUrlText
    # @return [Integer]
    attr_accessor :frequency
    # @return [Integer]
    attr_accessor :level
    # @return [String]
    attr_accessor :longText
    # @return [String]
    attr_accessor :mediumText
    # @return [Boolean]
    attr_accessor :push
    # @return [String]
    attr_accessor :shortText
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
youcanbookme-0.0.3.alpha lib/youcanbookme/models/warning.rb
youcanbookme-0.0.2.alpha lib/youcanbookme/models/warning.rb
youcanbookme-0.0.1.alpha lib/youcanbookme/models/warning.rb