Sha256: dd519ff6e1dfd474bb889a7a5a7c85cc206aa5c2fb44655878062f1b5fea6aef
Contents?: true
Size: 403 Bytes
Versions: 7
Compression:
Stored size: 403 Bytes
Contents
# frozen_string_literal: true module Calendly # Calendly's invitees counter model. class InviteesCounter include ModelUtils # @return [Integer] number of total invitees in this event. attr_accessor :total # @return [Integer] number of active invitees in this event. attr_accessor :active # @return [Integer] max invitees in this event. attr_accessor :limit end end
Version data entries
7 entries across 7 versions & 1 rubygems