Sha256: 9c732e63d9abb62d601fdd5b6dc27a096765e98efc415757b44a20a8300d5e5a

Contents?: true

Size: 799 Bytes

Versions: 3

Compression:

Stored size: 799 Bytes

Contents

# frozen_string_literal: true

module YouCanBookMe
  class ProfileAfterwards
    include ModelUtils

    ASSOCIATION = {
      bookerEvent: TemplateEvent,
      ownerEvent: TemplateEvent
    }.freeze

    # @return [YouCanBookMe::TemplateEvent]
    attr_accessor :bookerEvent
    # @return [String]
    attr_accessor :bookingDescription
    # @return [String]
    attr_accessor :bookingLocation
    # @return [String]
    attr_accessor :bookingTitle
    # @return [Boolean]
    attr_accessor :isUrl
    # @return [YouCanBookMe::TemplateEvent]
    attr_accessor :ownerEvent
    # @return [Boolean]
    attr_accessor :scrollToTop
    # @return [String]
    attr_accessor :text
    # @return [Boolean]
    attr_accessor :updateWholeBrowserWindow
    # @return [String]
    attr_accessor :url
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
youcanbookme-0.0.6.alpha lib/youcanbookme/models/profile_afterwards.rb
youcanbookme-0.0.5.alpha lib/youcanbookme/models/profile_afterwards.rb
youcanbookme-0.0.4.alpha lib/youcanbookme/models/profile_afterwards.rb