Class: TrophyApiClient::User

Inherits:
Object
  • Object
show all
Defined in:
lib/trophy_api_client/types/user.rb

Overview

A user of your application.

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id:, control: OMIT, created: OMIT, updated: OMIT, email: OMIT, name: OMIT, tz: OMIT, subscribe_to_emails: OMIT, additional_properties: nil) ⇒ TrophyApiClient::User

Parameters:

  • control (Boolean) (defaults to: OMIT)

    Whether the user is in the control group, meaning they do not receive emails or other communications from Trophy.

  • created (DateTime) (defaults to: OMIT)

    The date and time the user was created, in ISO 8601 format.

  • updated (DateTime) (defaults to: OMIT)

    The date and time the user was last updated, in ISO 8601 format.

  • id (String)

    The ID of the user in your database. Must be a string.

  • email (String) (defaults to: OMIT)

    The user’s email address. Required if subscribeToEmails is true.

  • name (String) (defaults to: OMIT)

    The name to refer to the user by in emails.

  • tz (String) (defaults to: OMIT)

    The user’s timezone (used for email scheduling).

  • subscribe_to_emails (Boolean) (defaults to: OMIT)

    Whether the user should receive Trophy-powered emails. Cannot be false if an email is provided.

  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/trophy_api_client/types/user.rb', line 48

def initialize(id:, control: OMIT, created: OMIT, updated: OMIT, email: OMIT, name: OMIT, tz: OMIT,
               subscribe_to_emails: OMIT, additional_properties: nil)
  @control = control if control != OMIT
  @created = created if created != OMIT
  @updated = updated if updated != OMIT
  @id = id
  @email = email if email != OMIT
  @name = name if name != OMIT
  @tz = tz if tz != OMIT
  @subscribe_to_emails = subscribe_to_emails if subscribe_to_emails != OMIT
  @additional_properties = additional_properties
  @_field_set = {
    "control": control,
    "created": created,
    "updated": updated,
    "id": id,
    "email": email,
    "name": name,
    "tz": tz,
    "subscribeToEmails": subscribe_to_emails
  }.reject do |_k, v|
    v == OMIT
  end
end

Instance Attribute Details

#additional_propertiesOpenStruct (readonly)

Returns Additional properties unmapped to the current class definition.

Returns:

  • (OpenStruct)

    Additional properties unmapped to the current class definition



29
30
31
# File 'lib/trophy_api_client/types/user.rb', line 29

def additional_properties
  @additional_properties
end

#controlBoolean (readonly)

Returns Whether the user is in the control group, meaning they do not receive emails or other communications from Trophy.

Returns:

  • (Boolean)

    Whether the user is in the control group, meaning they do not receive emails or other communications from Trophy.



12
13
14
# File 'lib/trophy_api_client/types/user.rb', line 12

def control
  @control
end

#createdDateTime (readonly)

Returns The date and time the user was created, in ISO 8601 format.

Returns:

  • (DateTime)

    The date and time the user was created, in ISO 8601 format.



14
15
16
# File 'lib/trophy_api_client/types/user.rb', line 14

def created
  @created
end

#emailString (readonly)

Returns The user’s email address. Required if subscribeToEmails is true.

Returns:

  • (String)

    The user’s email address. Required if subscribeToEmails is true.



20
21
22
# File 'lib/trophy_api_client/types/user.rb', line 20

def email
  @email
end

#idString (readonly)

Returns The ID of the user in your database. Must be a string.

Returns:

  • (String)

    The ID of the user in your database. Must be a string.



18
19
20
# File 'lib/trophy_api_client/types/user.rb', line 18

def id
  @id
end

#nameString (readonly)

Returns The name to refer to the user by in emails.

Returns:

  • (String)

    The name to refer to the user by in emails.



22
23
24
# File 'lib/trophy_api_client/types/user.rb', line 22

def name
  @name
end

#subscribe_to_emailsBoolean (readonly)

Returns Whether the user should receive Trophy-powered emails. Cannot be false if an email is provided.

Returns:

  • (Boolean)

    Whether the user should receive Trophy-powered emails. Cannot be false if an email is provided.



27
28
29
# File 'lib/trophy_api_client/types/user.rb', line 27

def subscribe_to_emails
  @subscribe_to_emails
end

#tzString (readonly)

Returns The user’s timezone (used for email scheduling).

Returns:

  • (String)

    The user’s timezone (used for email scheduling).



24
25
26
# File 'lib/trophy_api_client/types/user.rb', line 24

def tz
  @tz
end

#updatedDateTime (readonly)

Returns The date and time the user was last updated, in ISO 8601 format.

Returns:

  • (DateTime)

    The date and time the user was last updated, in ISO 8601 format.



16
17
18
# File 'lib/trophy_api_client/types/user.rb', line 16

def updated
  @updated
end

Class Method Details

.from_json(json_object:) ⇒ TrophyApiClient::User

Deserialize a JSON object to an instance of User

Parameters:

  • json_object (String)

Returns:



77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# File 'lib/trophy_api_client/types/user.rb', line 77

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  parsed_json = JSON.parse(json_object)
  control = parsed_json["control"]
  created = (DateTime.parse(parsed_json["created"]) unless parsed_json["created"].nil?)
  updated = (DateTime.parse(parsed_json["updated"]) unless parsed_json["updated"].nil?)
  id = parsed_json["id"]
  email = parsed_json["email"]
  name = parsed_json["name"]
  tz = parsed_json["tz"]
  subscribe_to_emails = parsed_json["subscribeToEmails"]
  new(
    control: control,
    created: created,
    updated: updated,
    id: id,
    email: email,
    name: name,
    tz: tz,
    subscribe_to_emails: subscribe_to_emails,
    additional_properties: struct
  )
end

.validate_raw(obj:) ⇒ Void

Leveraged for Union-type generation, validate_raw attempts to parse the given

hash and check each fields type against the current object's property
definitions.

Parameters:

  • obj (Object)

Returns:

  • (Void)


114
115
116
117
118
119
120
121
122
123
# File 'lib/trophy_api_client/types/user.rb', line 114

def self.validate_raw(obj:)
  obj.control&.is_a?(Boolean) != false || raise("Passed value for field obj.control is not the expected type, validation failed.")
  obj.created&.is_a?(DateTime) != false || raise("Passed value for field obj.created is not the expected type, validation failed.")
  obj.updated&.is_a?(DateTime) != false || raise("Passed value for field obj.updated is not the expected type, validation failed.")
  obj.id.is_a?(String) != false || raise("Passed value for field obj.id is not the expected type, validation failed.")
  obj.email&.is_a?(String) != false || raise("Passed value for field obj.email is not the expected type, validation failed.")
  obj.name&.is_a?(String) != false || raise("Passed value for field obj.name is not the expected type, validation failed.")
  obj.tz&.is_a?(String) != false || raise("Passed value for field obj.tz is not the expected type, validation failed.")
  obj.subscribe_to_emails&.is_a?(Boolean) != false || raise("Passed value for field obj.subscribe_to_emails is not the expected type, validation failed.")
end

Instance Method Details

#to_json(*_args) ⇒ String

Serialize an instance of User to a JSON object

Returns:

  • (String)


104
105
106
# File 'lib/trophy_api_client/types/user.rb', line 104

def to_json(*_args)
  @_field_set&.to_json
end