Sha256: 1588c3b0f3feb5c1cc227629bc712e06aefef1e96977f133f37a0c6a003913b2
Contents?: true
Size: 1.59 KB
Versions: 2
Compression:
Stored size: 1.59 KB
Contents
# frozen_string_literal: true module Calendly # Calendly's organization membership model. class OrganizationMembership include ModelUtils UUID_RE = %r{\A#{Client::API_HOST}/organization_memberships/(\w+)\z}.freeze TIME_FIELDS = %i[created_at updated_at].freeze ASSOCIATION = { user: User, organization: Organization }.freeze # @return [String] # unique id of the OrganizationMembership object. attr_accessor :uuid # @return [String] # Canonical resource reference. attr_accessor :uri # @return [String] # User's role within the organization attr_accessor :role # @return [Time] # Moment when user record was first created. attr_accessor :created_at # @return [Time] # Moment when user record was last updated. attr_accessor :updated_at # @return [Calendly::User] # Primary account details of a specific user. attr_accessor :user # @return [Organization] # Reference to Organization associated with this membership. attr_accessor :organization # # Get Organization Membership associated with self. # # @return [Calendly::OrganizationMembership] # @raise [Calendly::Error] if the uuid is empty. # @raise [Calendly::ApiError] if the api returns error code. # @since 0.1.0 def fetch client.membership uuid end # # Remove self from associated Organization. # # @raise [Calendly::Error] if the uuid is empty. # @raise [Calendly::ApiError] if the api returns error code. # @since 0.1.0 def delete client.delete_membership uuid end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
calendly-0.1.1 | lib/calendly/models/organization_membership.rb |
calendly-0.1.0 | lib/calendly/models/organization_membership.rb |