Class: AdvancedBilling::Endpoint
- Defined in:
- lib/advanced_billing/models/endpoint.rb
Overview
Endpoint Model.
Instance Attribute Summary collapse
-
#id ⇒ Integer
TODO: Write general description for this method.
-
#site_id ⇒ Integer
TODO: Write general description for this method.
-
#status ⇒ String
TODO: Write general description for this method.
-
#url ⇒ String
TODO: Write general description for this method.
-
#webhook_subscriptions ⇒ Array[String]
TODO: Write general description for this method.
Class Method Summary collapse
-
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
-
.names ⇒ Object
A mapping from model property names to API property names.
-
.nullables ⇒ Object
An array for nullable fields.
-
.optionals ⇒ Object
An array for optional fields.
Instance Method Summary collapse
-
#initialize(id: SKIP, url: SKIP, site_id: SKIP, status: SKIP, webhook_subscriptions: SKIP, additional_properties: {}) ⇒ Endpoint
constructor
A new instance of Endpoint.
Methods inherited from BaseModel
Constructor Details
#initialize(id: SKIP, url: SKIP, site_id: SKIP, status: SKIP, webhook_subscriptions: SKIP, additional_properties: {}) ⇒ Endpoint
Returns a new instance of Endpoint.
59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/advanced_billing/models/endpoint.rb', line 59 def initialize(id: SKIP, url: SKIP, site_id: SKIP, status: SKIP, webhook_subscriptions: SKIP, additional_properties: {}) @id = id unless id == SKIP @url = url unless url == SKIP @site_id = site_id unless site_id == SKIP @status = status unless status == SKIP @webhook_subscriptions = webhook_subscriptions unless webhook_subscriptions == SKIP # Add additional model properties to the instance. additional_properties.each do |_name, _value| instance_variable_set("@#{_name}", _value) end end |
Instance Attribute Details
#id ⇒ Integer
TODO: Write general description for this method
14 15 16 |
# File 'lib/advanced_billing/models/endpoint.rb', line 14 def id @id end |
#site_id ⇒ Integer
TODO: Write general description for this method
22 23 24 |
# File 'lib/advanced_billing/models/endpoint.rb', line 22 def site_id @site_id end |
#status ⇒ String
TODO: Write general description for this method
26 27 28 |
# File 'lib/advanced_billing/models/endpoint.rb', line 26 def status @status end |
#url ⇒ String
TODO: Write general description for this method
18 19 20 |
# File 'lib/advanced_billing/models/endpoint.rb', line 18 def url @url end |
#webhook_subscriptions ⇒ Array[String]
TODO: Write general description for this method
30 31 32 |
# File 'lib/advanced_billing/models/endpoint.rb', line 30 def webhook_subscriptions @webhook_subscriptions end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/advanced_billing/models/endpoint.rb', line 74 def self.from_hash(hash) return nil unless hash # Extract variables from the hash. id = hash.key?('id') ? hash['id'] : SKIP url = hash.key?('url') ? hash['url'] : SKIP site_id = hash.key?('site_id') ? hash['site_id'] : SKIP status = hash.key?('status') ? hash['status'] : SKIP webhook_subscriptions = hash.key?('webhook_subscriptions') ? hash['webhook_subscriptions'] : SKIP # Clean out expected properties from Hash. names.each_value { |k| hash.delete(k) } # Create object from extracted values. Endpoint.new(id: id, url: url, site_id: site_id, status: status, webhook_subscriptions: webhook_subscriptions, additional_properties: hash) end |
.names ⇒ Object
A mapping from model property names to API property names.
33 34 35 36 37 38 39 40 41 |
# File 'lib/advanced_billing/models/endpoint.rb', line 33 def self.names @_hash = {} if @_hash.nil? @_hash['id'] = 'id' @_hash['url'] = 'url' @_hash['site_id'] = 'site_id' @_hash['status'] = 'status' @_hash['webhook_subscriptions'] = 'webhook_subscriptions' @_hash end |
.nullables ⇒ Object
An array for nullable fields
55 56 57 |
# File 'lib/advanced_billing/models/endpoint.rb', line 55 def self.nullables [] end |
.optionals ⇒ Object
An array for optional fields
44 45 46 47 48 49 50 51 52 |
# File 'lib/advanced_billing/models/endpoint.rb', line 44 def self.optionals %w[ id url site_id status webhook_subscriptions ] end |