Class: EPlat::Mapping::Woocommerce::V3::Webhook

Inherits:
Base
  • Object
show all
Defined in:
lib/e_plat/mapping/woocommerce/v_3/webhook.rb

Constant Summary

Constants inherited from Base

Base::DEFAULT_VALUES

Instance Attribute Summary

Attributes inherited from Base

#resource, #virtual_collection

Instance Method Summary collapse

Methods inherited from Base

#aliases, #e_plat_key_to, #initialize, #inspect, #keys_aliased_to_native_keys, #mappable_keys, #mappings, #native_key_to, #native_setter, #platform, #protected_attributes_rename_on_initialize, #to_e_plat_keys, #to_native_keys, #via_native_attributes_where_possible, virtual_collection

Methods included from RequestBodyRoot

#include_root_in_request_body?

Constructor Details

This class inherits a constructor from EPlat::Mapping::Base

Instance Method Details

#native_attribute_aliasesObject



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/e_plat/mapping/woocommerce/v_3/webhook.rb', line 29

def native_attribute_aliases
  super.concat([
    {
      existing_entry: {native_key: "id", e_plat_key: "id"}
    },
    {
      existing_entry: {native_key: "topic", e_plat_key: "topic"}
    },
    {
      alias_attribute: {native_key: "delivery_url", e_plat_key: "address"}
    },
    {
      alias_attribute: {native_key: "date_created_gmt", e_plat_key: "created_at"}
    },
    {
      alias_attribute: {native_key: "date_modified_gmt", e_plat_key: "updated_at"}
    }
  ])
end

#native_attributesObject



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/e_plat/mapping/woocommerce/v_3/webhook.rb', line 11

def native_attributes
  super.concat([
    "id",
    "name",
    "status",
    "topic",
    "resource",
    "event",
    "hooks",
    "delivery_url",
    "secret",
    "date_created",
    "date_created_gmt",
    "date_modified",
    "date_modified_gmt"
  ])
end

#native_top_keyObject



7
8
9
# File 'lib/e_plat/mapping/woocommerce/v_3/webhook.rb', line 7

def native_top_key
  :itself
end