Class: Fizzy::Types::WebhookDeliveryEventEventable
- Inherits:
-
Data
- Object
- Data
- Fizzy::Types::WebhookDeliveryEventEventable
- Defined in:
- lib/fizzy/generated/types.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
-
#url ⇒ Object
readonly
Returns the value of attribute url.
Class Method Summary collapse
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id
1182 1183 1184 |
# File 'lib/fizzy/generated/types.rb', line 1182 def id @id end |
#type ⇒ Object (readonly)
Returns the value of attribute type
1182 1183 1184 |
# File 'lib/fizzy/generated/types.rb', line 1182 def type @type end |
#url ⇒ Object (readonly)
Returns the value of attribute url
1182 1183 1184 |
# File 'lib/fizzy/generated/types.rb', line 1182 def url @url end |
Class Method Details
.from_json(data) ⇒ Object
1184 1185 1186 1187 1188 1189 1190 |
# File 'lib/fizzy/generated/types.rb', line 1184 def self.from_json(data) new( type: data["type"], id: data["id"], url: data["url"] ) end |