Sha256: f9620fc8af8935baa1e6b70436c48f908ccbc11af4bba07e96828f557ae311ca
Contents?: true
Size: 696 Bytes
Versions: 3
Compression:
Stored size: 696 Bytes
Contents
# frozen_string_literal: true module YouCanBookMe # YouCanBookMe's CaligraphCalendar model. class CaligraphCalendar include ModelUtils ASSOCIATION = { links: CaligraphLink }.freeze # @return [Boolean] attr_accessor :deleted # @return [String] attr_accessor :id # @return [Array<YouCanBookMe::CaligraphLink>] attr_accessor :links # @return [Integer] attr_accessor :permissionLevel # @return [Boolean] attr_accessor :primary # @return [String] attr_accessor :remoteAccountId # @return [String] attr_accessor :timeZone # @return [String] attr_accessor :title # @return [String] attr_accessor :userName end end
Version data entries
3 entries across 3 versions & 1 rubygems