Sha256: 4b5d58bfb94d4fe4f7d56bbd7c62c527fc2d44d4b27acdb67dd0a9deb7894874
Contents?: true
Size: 1.58 KB
Versions: 1
Compression:
Stored size: 1.58 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
calendly-0.1.2 | lib/calendly/models/organization_membership.rb |