Sha256: 1cb50a788977dca935228ec47b85eed8276ea66b975f9f5b7b51e3c90ec1a76f
Contents?: true
Size: 424 Bytes
Versions: 3
Compression:
Stored size: 424 Bytes
Contents
# frozen_string_literal: true require 'calendly/client' require 'calendly/models/model_utils' module Calendly # Calendly's team model. class Team include ModelUtils UUID_RE = %r{\A#{Client::API_HOST}/teams/(#{UUID_FORMAT})\z}.freeze # @return [String] # unique id of the Team object. attr_accessor :uuid # @return [String] # Canonical resource reference. attr_accessor :uri end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
calendly-0.8.3 | lib/calendly/models/team.rb |
calendly-0.8.2 | lib/calendly/models/team.rb |
calendly-0.8.1 | lib/calendly/models/team.rb |