Sha256: 120255741d12452919e98ba10966938d5fbc90298b31ac7178052136a1bf9dd8

Contents?: true

Size: 503 Bytes

Versions: 3

Compression:

Stored size: 503 Bytes

Contents

# frozen_string_literal: true

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

    ASSOCIATION = {
      links: Link
    }.freeze

    # @return [String]
    attr_accessor :email
    # @return [String]
    attr_accessor :id
    # @return [Array<YouCanBookMe::Link>]
    attr_accessor :links
    # @return [Boolean]
    attr_accessor :required
    # @return [String]
    attr_accessor :role
    # @return [String]
    attr_accessor :status
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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