Class: GustoEmbedded::Shared::Signatory

Inherits:
Crystalline::FieldAugmented show all
Extended by:
T::Sig
Defined in:
lib/gusto_embedded/models/shared/signatory.rb

Overview

The representation of a company’s signatory

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

#field, #fields, included, #marshal_single, #to_dict, #to_json

Constructor Details

#initialize(uuid: nil, birthday: nil, email: nil, first_name: nil, has_ssn: nil, home_address: nil, identity_verification_status: nil, is_admin: nil, last_name: nil, phone: nil, title: nil, version: nil) ⇒ Signatory

Returns a new instance of Signatory.



47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/gusto_embedded/models/shared/signatory.rb', line 47

def initialize(uuid: nil, birthday: nil, email: nil, first_name: nil, has_ssn: nil, home_address: nil, identity_verification_status: nil, is_admin: nil, last_name: nil, phone: nil, title: nil, version: nil)
  @uuid = uuid
  @birthday = birthday
  @email = email
  @first_name = first_name
  @has_ssn = has_ssn
  @home_address = home_address
  @identity_verification_status = identity_verification_status
  @is_admin = is_admin
  @last_name = last_name
  @phone = phone
  @title = title
  @version = version
end