Class: Merge::Accounting::AccountIntegration
- Inherits:
-
Object
- Object
- Merge::Accounting::AccountIntegration
- Defined in:
- lib/merge_ruby_client/accounting/types/account_integration.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
-
#api_endpoints_to_documentation_urls ⇒ Hash{String => Object}
readonly
Mapping of API endpoints to documentation urls for support.
-
#categories ⇒ Array<Merge::Accounting::CategoriesEnum>
readonly
Category or categories this integration belongs to.
-
#category_beta_status ⇒ Hash{String => Object}
readonly
Category or categories this integration is in beta status for.
-
#color ⇒ String
readonly
The color of this integration used for buttons and text throughout the app and landing pages.
-
#image ⇒ String
readonly
Company logo in rectangular shape.
-
#name ⇒ String
readonly
Company name.
- #slug ⇒ String readonly
-
#square_image ⇒ String
readonly
Company logo in square shape.
-
#webhook_setup_guide_url ⇒ String
readonly
Setup guide URL for third party webhook creation.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Merge::Accounting::AccountIntegration
Deserialize a JSON object to an instance of AccountIntegration.
-
.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.
Instance Method Summary collapse
- #initialize(name:, categories: OMIT, image: OMIT, square_image: OMIT, color: OMIT, slug: OMIT, api_endpoints_to_documentation_urls: OMIT, webhook_setup_guide_url: OMIT, category_beta_status: OMIT, additional_properties: nil) ⇒ Merge::Accounting::AccountIntegration constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of AccountIntegration to a JSON object.
Constructor Details
#initialize(name:, categories: OMIT, image: OMIT, square_image: OMIT, color: OMIT, slug: OMIT, api_endpoints_to_documentation_urls: OMIT, webhook_setup_guide_url: OMIT, category_beta_status: OMIT, additional_properties: nil) ⇒ Merge::Accounting::AccountIntegration
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/merge_ruby_client/accounting/types/account_integration.rb', line 61 def initialize(name:, categories: OMIT, image: OMIT, square_image: OMIT, color: OMIT, slug: OMIT, api_endpoints_to_documentation_urls: OMIT, webhook_setup_guide_url: OMIT, category_beta_status: OMIT, additional_properties: nil) @name = name @categories = categories if categories != OMIT @image = image if image != OMIT @square_image = square_image if square_image != OMIT @color = color if color != OMIT @slug = slug if slug != OMIT if api_endpoints_to_documentation_urls != OMIT @api_endpoints_to_documentation_urls = api_endpoints_to_documentation_urls end @webhook_setup_guide_url = webhook_setup_guide_url if webhook_setup_guide_url != OMIT @category_beta_status = category_beta_status if category_beta_status != OMIT @additional_properties = additional_properties @_field_set = { "name": name, "categories": categories, "image": image, "square_image": square_image, "color": color, "slug": slug, "api_endpoints_to_documentation_urls": api_endpoints_to_documentation_urls, "webhook_setup_guide_url": webhook_setup_guide_url, "category_beta_status": category_beta_status }.reject do |_k, v| v == OMIT end end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
36 37 38 |
# File 'lib/merge_ruby_client/accounting/types/account_integration.rb', line 36 def additional_properties @additional_properties end |
#api_endpoints_to_documentation_urls ⇒ Hash{String => Object} (readonly)
Returns Mapping of API endpoints to documentation urls for support. Example: [[‘/common-model-scopes’, ng/common-model-scopes/#common_model_scopes_retrieve’],[‘/common-model-actions’, ocs.merge.dev/accounting/common-model-actions/#common_model_actions_retrieve’]], ‘POST’: [].
30 31 32 |
# File 'lib/merge_ruby_client/accounting/types/account_integration.rb', line 30 def api_endpoints_to_documentation_urls @api_endpoints_to_documentation_urls end |
#categories ⇒ Array<Merge::Accounting::CategoriesEnum> (readonly)
Returns Category or categories this integration belongs to. Multiple categories should be comma separated, i.e. [ats, hris].
14 15 16 |
# File 'lib/merge_ruby_client/accounting/types/account_integration.rb', line 14 def categories @categories end |
#category_beta_status ⇒ Hash{String => Object} (readonly)
Returns Category or categories this integration is in beta status for.
34 35 36 |
# File 'lib/merge_ruby_client/accounting/types/account_integration.rb', line 34 def category_beta_status @category_beta_status end |
#color ⇒ String (readonly)
Returns The color of this integration used for buttons and text throughout the app and landing pages. Choose a darker, saturated color..
22 23 24 |
# File 'lib/merge_ruby_client/accounting/types/account_integration.rb', line 22 def color @color end |
#image ⇒ String (readonly)
Returns Company logo in rectangular shape. Upload an image with a clear background..
17 18 19 |
# File 'lib/merge_ruby_client/accounting/types/account_integration.rb', line 17 def image @image end |
#name ⇒ String (readonly)
Returns Company name.
11 12 13 |
# File 'lib/merge_ruby_client/accounting/types/account_integration.rb', line 11 def name @name end |
#slug ⇒ String (readonly)
24 25 26 |
# File 'lib/merge_ruby_client/accounting/types/account_integration.rb', line 24 def slug @slug end |
#square_image ⇒ String (readonly)
Returns Company logo in square shape. Upload an image with a white background..
19 20 21 |
# File 'lib/merge_ruby_client/accounting/types/account_integration.rb', line 19 def square_image @square_image end |
#webhook_setup_guide_url ⇒ String (readonly)
Returns Setup guide URL for third party webhook creation. Exposed in Merge Docs.
32 33 34 |
# File 'lib/merge_ruby_client/accounting/types/account_integration.rb', line 32 def webhook_setup_guide_url @webhook_setup_guide_url end |
Class Method Details
.from_json(json_object:) ⇒ Merge::Accounting::AccountIntegration
Deserialize a JSON object to an instance of AccountIntegration
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
# File 'lib/merge_ruby_client/accounting/types/account_integration.rb', line 94 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) name = parsed_json["name"] categories = parsed_json["categories"] image = parsed_json["image"] square_image = parsed_json["square_image"] color = parsed_json["color"] slug = parsed_json["slug"] api_endpoints_to_documentation_urls = parsed_json["api_endpoints_to_documentation_urls"] webhook_setup_guide_url = parsed_json["webhook_setup_guide_url"] category_beta_status = parsed_json["category_beta_status"] new( name: name, categories: categories, image: image, square_image: square_image, color: color, slug: slug, api_endpoints_to_documentation_urls: api_endpoints_to_documentation_urls, webhook_setup_guide_url: webhook_setup_guide_url, category_beta_status: category_beta_status, 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.
133 134 135 136 137 138 139 140 141 142 143 |
# File 'lib/merge_ruby_client/accounting/types/account_integration.rb', line 133 def self.validate_raw(obj:) obj.name.is_a?(String) != false || raise("Passed value for field obj.name is not the expected type, validation failed.") obj.categories&.is_a?(Array) != false || raise("Passed value for field obj.categories is not the expected type, validation failed.") obj.image&.is_a?(String) != false || raise("Passed value for field obj.image is not the expected type, validation failed.") obj.square_image&.is_a?(String) != false || raise("Passed value for field obj.square_image is not the expected type, validation failed.") obj.color&.is_a?(String) != false || raise("Passed value for field obj.color is not the expected type, validation failed.") obj.slug&.is_a?(String) != false || raise("Passed value for field obj.slug is not the expected type, validation failed.") obj.api_endpoints_to_documentation_urls&.is_a?(Hash) != false || raise("Passed value for field obj.api_endpoints_to_documentation_urls is not the expected type, validation failed.") obj.webhook_setup_guide_url&.is_a?(String) != false || raise("Passed value for field obj.webhook_setup_guide_url is not the expected type, validation failed.") obj.category_beta_status&.is_a?(Hash) != false || raise("Passed value for field obj.category_beta_status is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of AccountIntegration to a JSON object
123 124 125 |
# File 'lib/merge_ruby_client/accounting/types/account_integration.rb', line 123 def to_json(*_args) @_field_set&.to_json end |