Sha256: 66ce1b27a8452f0652dd93bab3fc89efd1e67d19bc2ad0dcd024a43cc1d47ad3
Contents?: true
Size: 982 Bytes
Versions: 15
Compression:
Stored size: 982 Bytes
Contents
# frozen_string_literal: true module Dnsimple module Struct class Collaborator < Base # @return [Integer] The collaborator ID in DNSimple. attr_accessor :id # @return [Integer] The associated domain ID. attr_accessor :domain_id # @return [String] The associated domain name. attr_accessor :domain_name # @return [Integer, NilClass] The user ID, if the collaborator accepted the invitation. attr_accessor :user_id # @return [String] The user email. attr_accessor :user_email # @return [TrueClass,FalseClass] Invitation attr_accessor :invitation # @return [String] When the collaborator was created in DNSimple. attr_accessor :created_at # @return [String] When the collaborator was last updated in DNSimple. attr_accessor :updated_at # @return [String,NilClass] When the collaborator has accepted the invitation. attr_accessor :accepted_at end end end
Version data entries
15 entries across 15 versions & 1 rubygems