Class: Io::Flow::V0::Models::EventType

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value) ⇒ EventType

Returns a new instance of EventType.



11922
11923
11924
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11922

def initialize(value)
  @value = HttpClient::Preconditions.assert_class('value', value, String)
end

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



11920
11921
11922
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11920

def value
  @value
end

Class Method Details

.ALLObject



11942
11943
11944
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11942

def EventType.ALL
  @@all ||= [EventType.attribute_upserted, EventType.attribute_deleted, EventType.attribute_upserted_v2, EventType.attribute_deleted_v2, EventType.catalog_upserted, EventType.catalog_deleted, EventType.subcatalog_upserted, EventType.subcatalog_deleted, EventType.catalog_item_upserted, EventType.catalog_item_deleted, EventType.subcatalog_item_upserted, EventType.subcatalog_item_deleted, EventType.b2b_invoice_upserted, EventType.b2b_invoice_deleted, EventType.consumer_invoice_upserted, EventType.consumer_invoice_deleted, EventType.credit_memo_upserted, EventType.credit_memo_deleted, EventType.crossdock_shipment_upserted, EventType.rate_deleted, EventType.rate_upserted, EventType.available_promotions_upserted, EventType.available_promotions_deleted, EventType.available_promotions_upserted_v2, EventType.available_promotions_deleted_v2, EventType.allocation_deleted_v2, EventType.allocation_upserted_v2, EventType.currency_format_deleted, EventType.currency_format_upserted, EventType.experience_deleted, EventType.experience_upserted, EventType.experience_deleted_v2, EventType.experience_upserted_v2, EventType.experience_price_book_mapping_deleted, EventType.experience_price_book_mapping_upserted, EventType.experience_logistics_settings_upserted, EventType.experience_logistics_settings_deleted, EventType.item_margin_deleted, EventType.item_margin_upserted, EventType.item_sales_margin_deleted, EventType.item_sales_margin_upserted, EventType.label_format_deleted, EventType.label_format_upserted, EventType.order_deleted, EventType.order_upserted, EventType.order_deleted_v2, EventType.order_upserted_v2, EventType.order_identifier_deleted, EventType.order_identifier_upserted, EventType.order_identifier_deleted_v2, EventType.order_identifier_upserted_v2, EventType.pricing_deleted, EventType.pricing_upserted, EventType.fraud_status_changed, EventType.center_upserted, EventType.center_deleted, EventType.tier_upserted, EventType.tier_deleted, EventType.delivery_option_upserted, EventType.delivery_option_deleted, EventType.shipping_configuration_upserted, EventType.shipping_configuration_deleted, EventType.tier_upserted_v2, EventType.tier_deleted_v2, EventType.shipping_lane_upserted, EventType.shipping_lane_deleted, EventType.hs6_code_upserted, EventType.hs6_code_deleted, EventType.hs10_code_upserted, EventType.hs10_code_deleted, EventType.item_origin_upserted, EventType.item_origin_deleted, EventType.harmonized_item_upserted, EventType.harmonized_item_deleted, EventType.harmonized_landed_cost_upserted, EventType.fully_harmonized_item_upserted, EventType.experience_inventory_item_upserted, EventType.experience_inventory_item_deleted, EventType.rule_upserted, EventType.rule_deleted, EventType.serial_upserted, EventType.serial_deleted, EventType.snapshot_upserted, EventType.snapshot_deleted, EventType.label_upserted, EventType.notification_upserted, EventType.notification_deleted, EventType.manifested_label_upserted, EventType.manifested_label_deleted, EventType.local_item_upserted, EventType.local_item_deleted, EventType.membership_upserted, EventType.membership_deleted, EventType.membership_upserted_v2, EventType.membership_deleted_v2, EventType.organization_upserted, EventType.organization_deleted, EventType.organization_upserted_v2, EventType.organization_deleted_v2, EventType.organization_short_id_upserted, EventType.organization_short_id_deleted, EventType.authorization_deleted_v2, EventType.authorization_status_changed, EventType.card_authorization_upserted_v2, EventType.online_authorization_upserted_v2, EventType.capture_upserted_v2, EventType.capture_deleted, EventType.card_upserted_v2, EventType.card_deleted, EventType.payment_upserted, EventType.payment_deleted, EventType.refund_upserted_v2, EventType.refund_capture_upserted_v2, EventType.reversal_upserted, EventType.reversal_deleted, EventType.capture_identifier_upserted, EventType.capture_identifier_deleted, EventType.refund_identifier_upserted, EventType.refund_identifier_deleted, EventType.virtual_card_capture_upserted, EventType.virtual_card_capture_deleted, EventType.virtual_card_refund_upserted, EventType.virtual_card_refund_deleted, EventType.price_book_upserted, EventType.price_book_deleted, EventType.price_book_item_upserted, EventType.price_book_item_deleted, EventType.organization_rates_published, EventType.organization_countries_published, EventType.organization_ratecard_transit_windows_published, EventType.return_upserted, EventType.return_deleted, EventType.targeting_item_upserted, EventType.targeting_item_deleted, EventType.targeting_item_deleted_v2, EventType.tracking_label_event_upserted]
end

.allocation_deleted_v2Object



12046
12047
12048
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12046

def EventType.allocation_deleted_v2
  @@_allocation_deleted_v2 ||= EventType.new('allocation_deleted_v2')
end

.allocation_upserted_v2Object



12050
12051
12052
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12050

def EventType.allocation_upserted_v2
  @@_allocation_upserted_v2 ||= EventType.new('allocation_upserted_v2')
end

.apply(value) ⇒ Object

Returns the instance of EventType for this value, creating a new instance for an unknown value



11927
11928
11929
11930
11931
11932
11933
11934
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11927

def EventType.apply(value)
  if value.instance_of?(EventType)
    value
  else
    HttpClient::Preconditions.assert_class_or_nil('value', value, String)
    value.nil? ? nil : (from_string(value) || EventType.new(value))
  end
end

.attribute_deletedObject



11950
11951
11952
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11950

def EventType.attribute_deleted
  @@_attribute_deleted ||= EventType.new('attribute_deleted')
end

.attribute_deleted_v2Object



11958
11959
11960
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11958

def EventType.attribute_deleted_v2
  @@_attribute_deleted_v2 ||= EventType.new('attribute_deleted_v2')
end

.attribute_upsertedObject



11946
11947
11948
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11946

def EventType.attribute_upserted
  @@_attribute_upserted ||= EventType.new('attribute_upserted')
end

.attribute_upserted_v2Object



11954
11955
11956
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11954

def EventType.attribute_upserted_v2
  @@_attribute_upserted_v2 ||= EventType.new('attribute_upserted_v2')
end

.authorization_deleted_v2Object



12350
12351
12352
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12350

def EventType.authorization_deleted_v2
  @@_authorization_deleted_v2 ||= EventType.new('authorization_deleted_v2')
end

.authorization_status_changedObject



12354
12355
12356
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12354

def EventType.authorization_status_changed
  @@_authorization_status_changed ||= EventType.new('authorization_status_changed')
end

.available_promotions_deletedObject



12034
12035
12036
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12034

def EventType.available_promotions_deleted
  @@_available_promotions_deleted ||= EventType.new('available_promotions_deleted')
end

.available_promotions_deleted_v2Object



12042
12043
12044
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12042

def EventType.available_promotions_deleted_v2
  @@_available_promotions_deleted_v2 ||= EventType.new('available_promotions_deleted_v2')
end

.available_promotions_upsertedObject



12030
12031
12032
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12030

def EventType.available_promotions_upserted
  @@_available_promotions_upserted ||= EventType.new('available_promotions_upserted')
end

.available_promotions_upserted_v2Object



12038
12039
12040
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12038

def EventType.available_promotions_upserted_v2
  @@_available_promotions_upserted_v2 ||= EventType.new('available_promotions_upserted_v2')
end

.b2b_invoice_deletedObject



11998
11999
12000
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11998

def EventType.b2b_invoice_deleted
  @@_b2b_invoice_deleted ||= EventType.new('b2b_invoice_deleted')
end

.b2b_invoice_upsertedObject



11994
11995
11996
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11994

def EventType.b2b_invoice_upserted
  @@_b2b_invoice_upserted ||= EventType.new('b2b_invoice_upserted')
end

.capture_deletedObject



12370
12371
12372
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12370

def EventType.capture_deleted
  @@_capture_deleted ||= EventType.new('capture_deleted')
end

.capture_identifier_deletedObject



12410
12411
12412
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12410

def EventType.capture_identifier_deleted
  @@_capture_identifier_deleted ||= EventType.new('capture_identifier_deleted')
end

.capture_identifier_upsertedObject



12406
12407
12408
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12406

def EventType.capture_identifier_upserted
  @@_capture_identifier_upserted ||= EventType.new('capture_identifier_upserted')
end

.capture_upserted_v2Object



12366
12367
12368
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12366

def EventType.capture_upserted_v2
  @@_capture_upserted_v2 ||= EventType.new('capture_upserted_v2')
end

.card_authorization_upserted_v2Object



12358
12359
12360
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12358

def EventType.card_authorization_upserted_v2
  @@_card_authorization_upserted_v2 ||= EventType.new('card_authorization_upserted_v2')
end

.card_deletedObject



12378
12379
12380
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12378

def EventType.card_deleted
  @@_card_deleted ||= EventType.new('card_deleted')
end

.card_upserted_v2Object



12374
12375
12376
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12374

def EventType.card_upserted_v2
  @@_card_upserted_v2 ||= EventType.new('card_upserted_v2')
end

.catalog_deletedObject



11966
11967
11968
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11966

def EventType.catalog_deleted
  @@_catalog_deleted ||= EventType.new('catalog_deleted')
end

.catalog_item_deletedObject



11982
11983
11984
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11982

def EventType.catalog_item_deleted
  @@_catalog_item_deleted ||= EventType.new('catalog_item_deleted')
end

.catalog_item_upsertedObject



11978
11979
11980
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11978

def EventType.catalog_item_upserted
  @@_catalog_item_upserted ||= EventType.new('catalog_item_upserted')
end

.catalog_upsertedObject



11962
11963
11964
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11962

def EventType.catalog_upserted
  @@_catalog_upserted ||= EventType.new('catalog_upserted')
end

.center_deletedObject



12166
12167
12168
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12166

def EventType.center_deleted
  @@_center_deleted ||= EventType.new('center_deleted')
end

.center_upsertedObject



12162
12163
12164
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12162

def EventType.center_upserted
  @@_center_upserted ||= EventType.new('center_upserted')
end

.consumer_invoice_deletedObject



12006
12007
12008
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12006

def EventType.consumer_invoice_deleted
  @@_consumer_invoice_deleted ||= EventType.new('consumer_invoice_deleted')
end

.consumer_invoice_upsertedObject



12002
12003
12004
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12002

def EventType.consumer_invoice_upserted
  @@_consumer_invoice_upserted ||= EventType.new('consumer_invoice_upserted')
end

.credit_memo_deletedObject



12014
12015
12016
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12014

def EventType.credit_memo_deleted
  @@_credit_memo_deleted ||= EventType.new('credit_memo_deleted')
end

.credit_memo_upsertedObject



12010
12011
12012
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12010

def EventType.credit_memo_upserted
  @@_credit_memo_upserted ||= EventType.new('credit_memo_upserted')
end

.crossdock_shipment_upsertedObject



12018
12019
12020
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12018

def EventType.crossdock_shipment_upserted
  @@_crossdock_shipment_upserted ||= EventType.new('crossdock_shipment_upserted')
end

.currency_format_deletedObject



12054
12055
12056
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12054

def EventType.currency_format_deleted
  @@_currency_format_deleted ||= EventType.new('currency_format_deleted')
end

.currency_format_upsertedObject



12058
12059
12060
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12058

def EventType.currency_format_upserted
  @@_currency_format_upserted ||= EventType.new('currency_format_upserted')
end

.delivery_option_deletedObject



12182
12183
12184
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12182

def EventType.delivery_option_deleted
  @@_delivery_option_deleted ||= EventType.new('delivery_option_deleted')
end

.delivery_option_upsertedObject



12178
12179
12180
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12178

def EventType.delivery_option_upserted
  @@_delivery_option_upserted ||= EventType.new('delivery_option_upserted')
end

.experience_deletedObject



12062
12063
12064
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12062

def EventType.experience_deleted
  @@_experience_deleted ||= EventType.new('experience_deleted')
end

.experience_deleted_v2Object



12070
12071
12072
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12070

def EventType.experience_deleted_v2
  @@_experience_deleted_v2 ||= EventType.new('experience_deleted_v2')
end

.experience_inventory_item_deletedObject



12254
12255
12256
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12254

def EventType.experience_inventory_item_deleted
  @@_experience_inventory_item_deleted ||= EventType.new('experience_inventory_item_deleted')
end

.experience_inventory_item_upsertedObject



12250
12251
12252
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12250

def EventType.experience_inventory_item_upserted
  @@_experience_inventory_item_upserted ||= EventType.new('experience_inventory_item_upserted')
end

.experience_logistics_settings_deletedObject



12090
12091
12092
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12090

def EventType.experience_logistics_settings_deleted
  @@_experience_logistics_settings_deleted ||= EventType.new('experience_logistics_settings_deleted')
end

.experience_logistics_settings_upsertedObject



12086
12087
12088
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12086

def EventType.experience_logistics_settings_upserted
  @@_experience_logistics_settings_upserted ||= EventType.new('experience_logistics_settings_upserted')
end

.experience_price_book_mapping_deletedObject



12078
12079
12080
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12078

def EventType.experience_price_book_mapping_deleted
  @@_experience_price_book_mapping_deleted ||= EventType.new('experience_price_book_mapping_deleted')
end

.experience_price_book_mapping_upsertedObject



12082
12083
12084
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12082

def EventType.experience_price_book_mapping_upserted
  @@_experience_price_book_mapping_upserted ||= EventType.new('experience_price_book_mapping_upserted')
end

.experience_upsertedObject



12066
12067
12068
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12066

def EventType.experience_upserted
  @@_experience_upserted ||= EventType.new('experience_upserted')
end

.experience_upserted_v2Object



12074
12075
12076
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12074

def EventType.experience_upserted_v2
  @@_experience_upserted_v2 ||= EventType.new('experience_upserted_v2')
end

.fraud_status_changedObject



12158
12159
12160
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12158

def EventType.fraud_status_changed
  @@_fraud_status_changed ||= EventType.new('fraud_status_changed')
end

.from_string(value) ⇒ Object

Returns the instance of EventType for this value, or nil if not found



11937
11938
11939
11940
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11937

def EventType.from_string(value)
  HttpClient::Preconditions.assert_class('value', value, String)
  EventType.ALL.find { |v| v.value == value }
end

.fully_harmonized_item_upsertedObject



12246
12247
12248
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12246

def EventType.fully_harmonized_item_upserted
  @@_fully_harmonized_item_upserted ||= EventType.new('fully_harmonized_item_upserted')
end

.harmonized_item_deletedObject



12238
12239
12240
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12238

def EventType.harmonized_item_deleted
  @@_harmonized_item_deleted ||= EventType.new('harmonized_item_deleted')
end

.harmonized_item_upsertedObject



12234
12235
12236
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12234

def EventType.harmonized_item_upserted
  @@_harmonized_item_upserted ||= EventType.new('harmonized_item_upserted')
end

.harmonized_landed_cost_upsertedObject



12242
12243
12244
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12242

def EventType.harmonized_landed_cost_upserted
  @@_harmonized_landed_cost_upserted ||= EventType.new('harmonized_landed_cost_upserted')
end

.hs10_code_deletedObject



12222
12223
12224
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12222

def EventType.hs10_code_deleted
  @@_hs10_code_deleted ||= EventType.new('hs10_code_deleted')
end

.hs10_code_upsertedObject



12218
12219
12220
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12218

def EventType.hs10_code_upserted
  @@_hs10_code_upserted ||= EventType.new('hs10_code_upserted')
end

.hs6_code_deletedObject



12214
12215
12216
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12214

def EventType.hs6_code_deleted
  @@_hs6_code_deleted ||= EventType.new('hs6_code_deleted')
end

.hs6_code_upsertedObject



12210
12211
12212
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12210

def EventType.hs6_code_upserted
  @@_hs6_code_upserted ||= EventType.new('hs6_code_upserted')
end

.item_margin_deletedObject



12094
12095
12096
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12094

def EventType.item_margin_deleted
  @@_item_margin_deleted ||= EventType.new('item_margin_deleted')
end

.item_margin_upsertedObject



12098
12099
12100
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12098

def EventType.item_margin_upserted
  @@_item_margin_upserted ||= EventType.new('item_margin_upserted')
end

.item_origin_deletedObject



12230
12231
12232
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12230

def EventType.item_origin_deleted
  @@_item_origin_deleted ||= EventType.new('item_origin_deleted')
end

.item_origin_upsertedObject



12226
12227
12228
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12226

def EventType.item_origin_upserted
  @@_item_origin_upserted ||= EventType.new('item_origin_upserted')
end

.item_sales_margin_deletedObject



12102
12103
12104
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12102

def EventType.item_sales_margin_deleted
  @@_item_sales_margin_deleted ||= EventType.new('item_sales_margin_deleted')
end

.item_sales_margin_upsertedObject



12106
12107
12108
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12106

def EventType.item_sales_margin_upserted
  @@_item_sales_margin_upserted ||= EventType.new('item_sales_margin_upserted')
end

.label_format_deletedObject



12110
12111
12112
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12110

def EventType.label_format_deleted
  @@_label_format_deleted ||= EventType.new('label_format_deleted')
end

.label_format_upsertedObject



12114
12115
12116
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12114

def EventType.label_format_upserted
  @@_label_format_upserted ||= EventType.new('label_format_upserted')
end

.label_upsertedObject



12282
12283
12284
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12282

def EventType.label_upserted
  @@_label_upserted ||= EventType.new('label_upserted')
end

.local_item_deletedObject



12306
12307
12308
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12306

def EventType.local_item_deleted
  @@_local_item_deleted ||= EventType.new('local_item_deleted')
end

.local_item_upsertedObject



12302
12303
12304
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12302

def EventType.local_item_upserted
  @@_local_item_upserted ||= EventType.new('local_item_upserted')
end

.manifested_label_deletedObject



12298
12299
12300
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12298

def EventType.manifested_label_deleted
  @@_manifested_label_deleted ||= EventType.new('manifested_label_deleted')
end

.manifested_label_upsertedObject



12294
12295
12296
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12294

def EventType.manifested_label_upserted
  @@_manifested_label_upserted ||= EventType.new('manifested_label_upserted')
end

.membership_deletedObject



12314
12315
12316
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12314

def EventType.membership_deleted
  @@_membership_deleted ||= EventType.new('membership_deleted')
end

.membership_deleted_v2Object



12322
12323
12324
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12322

def EventType.membership_deleted_v2
  @@_membership_deleted_v2 ||= EventType.new('membership_deleted_v2')
end

.membership_upsertedObject



12310
12311
12312
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12310

def EventType.membership_upserted
  @@_membership_upserted ||= EventType.new('membership_upserted')
end

.membership_upserted_v2Object



12318
12319
12320
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12318

def EventType.membership_upserted_v2
  @@_membership_upserted_v2 ||= EventType.new('membership_upserted_v2')
end

.notification_deletedObject



12290
12291
12292
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12290

def EventType.notification_deleted
  @@_notification_deleted ||= EventType.new('notification_deleted')
end

.notification_upsertedObject



12286
12287
12288
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12286

def EventType.notification_upserted
  @@_notification_upserted ||= EventType.new('notification_upserted')
end

.online_authorization_upserted_v2Object



12362
12363
12364
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12362

def EventType.online_authorization_upserted_v2
  @@_online_authorization_upserted_v2 ||= EventType.new('online_authorization_upserted_v2')
end

.order_deletedObject



12118
12119
12120
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12118

def EventType.order_deleted
  @@_order_deleted ||= EventType.new('order_deleted')
end

.order_deleted_v2Object



12126
12127
12128
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12126

def EventType.order_deleted_v2
  @@_order_deleted_v2 ||= EventType.new('order_deleted_v2')
end

.order_identifier_deletedObject



12134
12135
12136
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12134

def EventType.order_identifier_deleted
  @@_order_identifier_deleted ||= EventType.new('order_identifier_deleted')
end

.order_identifier_deleted_v2Object



12142
12143
12144
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12142

def EventType.order_identifier_deleted_v2
  @@_order_identifier_deleted_v2 ||= EventType.new('order_identifier_deleted_v2')
end

.order_identifier_upsertedObject



12138
12139
12140
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12138

def EventType.order_identifier_upserted
  @@_order_identifier_upserted ||= EventType.new('order_identifier_upserted')
end

.order_identifier_upserted_v2Object



12146
12147
12148
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12146

def EventType.order_identifier_upserted_v2
  @@_order_identifier_upserted_v2 ||= EventType.new('order_identifier_upserted_v2')
end

.order_upsertedObject



12122
12123
12124
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12122

def EventType.order_upserted
  @@_order_upserted ||= EventType.new('order_upserted')
end

.order_upserted_v2Object



12130
12131
12132
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12130

def EventType.order_upserted_v2
  @@_order_upserted_v2 ||= EventType.new('order_upserted_v2')
end

.organization_countries_publishedObject



12458
12459
12460
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12458

def EventType.organization_countries_published
  @@_organization_countries_published ||= EventType.new('organization_countries_published')
end

.organization_deletedObject



12330
12331
12332
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12330

def EventType.organization_deleted
  @@_organization_deleted ||= EventType.new('organization_deleted')
end

.organization_deleted_v2Object



12338
12339
12340
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12338

def EventType.organization_deleted_v2
  @@_organization_deleted_v2 ||= EventType.new('organization_deleted_v2')
end

.organization_ratecard_transit_windows_publishedObject



12462
12463
12464
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12462

def EventType.organization_ratecard_transit_windows_published
  @@_organization_ratecard_transit_windows_published ||= EventType.new('organization_ratecard_transit_windows_published')
end

.organization_rates_publishedObject



12454
12455
12456
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12454

def EventType.organization_rates_published
  @@_organization_rates_published ||= EventType.new('organization_rates_published')
end

.organization_short_id_deletedObject



12346
12347
12348
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12346

def EventType.organization_short_id_deleted
  @@_organization_short_id_deleted ||= EventType.new('organization_short_id_deleted')
end

.organization_short_id_upsertedObject



12342
12343
12344
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12342

def EventType.organization_short_id_upserted
  @@_organization_short_id_upserted ||= EventType.new('organization_short_id_upserted')
end

.organization_upsertedObject



12326
12327
12328
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12326

def EventType.organization_upserted
  @@_organization_upserted ||= EventType.new('organization_upserted')
end

.organization_upserted_v2Object



12334
12335
12336
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12334

def EventType.organization_upserted_v2
  @@_organization_upserted_v2 ||= EventType.new('organization_upserted_v2')
end

.payment_deletedObject



12386
12387
12388
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12386

def EventType.payment_deleted
  @@_payment_deleted ||= EventType.new('payment_deleted')
end

.payment_upsertedObject



12382
12383
12384
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12382

def EventType.payment_upserted
  @@_payment_upserted ||= EventType.new('payment_upserted')
end

.price_book_deletedObject



12442
12443
12444
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12442

def EventType.price_book_deleted
  @@_price_book_deleted ||= EventType.new('price_book_deleted')
end

.price_book_item_deletedObject



12450
12451
12452
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12450

def EventType.price_book_item_deleted
  @@_price_book_item_deleted ||= EventType.new('price_book_item_deleted')
end

.price_book_item_upsertedObject



12446
12447
12448
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12446

def EventType.price_book_item_upserted
  @@_price_book_item_upserted ||= EventType.new('price_book_item_upserted')
end

.price_book_upsertedObject



12438
12439
12440
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12438

def EventType.price_book_upserted
  @@_price_book_upserted ||= EventType.new('price_book_upserted')
end

.pricing_deletedObject



12150
12151
12152
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12150

def EventType.pricing_deleted
  @@_pricing_deleted ||= EventType.new('pricing_deleted')
end

.pricing_upsertedObject



12154
12155
12156
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12154

def EventType.pricing_upserted
  @@_pricing_upserted ||= EventType.new('pricing_upserted')
end

.rate_deletedObject



12022
12023
12024
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12022

def EventType.rate_deleted
  @@_rate_deleted ||= EventType.new('rate_deleted')
end

.rate_upsertedObject



12026
12027
12028
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12026

def EventType.rate_upserted
  @@_rate_upserted ||= EventType.new('rate_upserted')
end

.refund_capture_upserted_v2Object



12394
12395
12396
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12394

def EventType.refund_capture_upserted_v2
  @@_refund_capture_upserted_v2 ||= EventType.new('refund_capture_upserted_v2')
end

.refund_identifier_deletedObject



12418
12419
12420
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12418

def EventType.refund_identifier_deleted
  @@_refund_identifier_deleted ||= EventType.new('refund_identifier_deleted')
end

.refund_identifier_upsertedObject



12414
12415
12416
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12414

def EventType.refund_identifier_upserted
  @@_refund_identifier_upserted ||= EventType.new('refund_identifier_upserted')
end

.refund_upserted_v2Object



12390
12391
12392
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12390

def EventType.refund_upserted_v2
  @@_refund_upserted_v2 ||= EventType.new('refund_upserted_v2')
end

.return_deletedObject



12470
12471
12472
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12470

def EventType.return_deleted
  @@_return_deleted ||= EventType.new('return_deleted')
end

.return_upsertedObject



12466
12467
12468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12466

def EventType.return_upserted
  @@_return_upserted ||= EventType.new('return_upserted')
end

.reversal_deletedObject



12402
12403
12404
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12402

def EventType.reversal_deleted
  @@_reversal_deleted ||= EventType.new('reversal_deleted')
end

.reversal_upsertedObject



12398
12399
12400
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12398

def EventType.reversal_upserted
  @@_reversal_upserted ||= EventType.new('reversal_upserted')
end

.rule_deletedObject



12262
12263
12264
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12262

def EventType.rule_deleted
  @@_rule_deleted ||= EventType.new('rule_deleted')
end

.rule_upsertedObject



12258
12259
12260
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12258

def EventType.rule_upserted
  @@_rule_upserted ||= EventType.new('rule_upserted')
end

.serial_deletedObject



12270
12271
12272
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12270

def EventType.serial_deleted
  @@_serial_deleted ||= EventType.new('serial_deleted')
end

.serial_upsertedObject



12266
12267
12268
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12266

def EventType.serial_upserted
  @@_serial_upserted ||= EventType.new('serial_upserted')
end

.shipping_configuration_deletedObject



12190
12191
12192
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12190

def EventType.shipping_configuration_deleted
  @@_shipping_configuration_deleted ||= EventType.new('shipping_configuration_deleted')
end

.shipping_configuration_upsertedObject



12186
12187
12188
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12186

def EventType.shipping_configuration_upserted
  @@_shipping_configuration_upserted ||= EventType.new('shipping_configuration_upserted')
end

.shipping_lane_deletedObject



12206
12207
12208
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12206

def EventType.shipping_lane_deleted
  @@_shipping_lane_deleted ||= EventType.new('shipping_lane_deleted')
end

.shipping_lane_upsertedObject



12202
12203
12204
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12202

def EventType.shipping_lane_upserted
  @@_shipping_lane_upserted ||= EventType.new('shipping_lane_upserted')
end

.snapshot_deletedObject



12278
12279
12280
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12278

def EventType.snapshot_deleted
  @@_snapshot_deleted ||= EventType.new('snapshot_deleted')
end

.snapshot_upsertedObject



12274
12275
12276
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12274

def EventType.snapshot_upserted
  @@_snapshot_upserted ||= EventType.new('snapshot_upserted')
end

.subcatalog_deletedObject



11974
11975
11976
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11974

def EventType.subcatalog_deleted
  @@_subcatalog_deleted ||= EventType.new('subcatalog_deleted')
end

.subcatalog_item_deletedObject



11990
11991
11992
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11990

def EventType.subcatalog_item_deleted
  @@_subcatalog_item_deleted ||= EventType.new('subcatalog_item_deleted')
end

.subcatalog_item_upsertedObject



11986
11987
11988
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11986

def EventType.subcatalog_item_upserted
  @@_subcatalog_item_upserted ||= EventType.new('subcatalog_item_upserted')
end

.subcatalog_upsertedObject



11970
11971
11972
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11970

def EventType.subcatalog_upserted
  @@_subcatalog_upserted ||= EventType.new('subcatalog_upserted')
end

.targeting_item_deletedObject



12478
12479
12480
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12478

def EventType.targeting_item_deleted
  @@_targeting_item_deleted ||= EventType.new('targeting_item_deleted')
end

.targeting_item_deleted_v2Object



12482
12483
12484
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12482

def EventType.targeting_item_deleted_v2
  @@_targeting_item_deleted_v2 ||= EventType.new('targeting_item_deleted_v2')
end

.targeting_item_upsertedObject



12474
12475
12476
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12474

def EventType.targeting_item_upserted
  @@_targeting_item_upserted ||= EventType.new('targeting_item_upserted')
end

.tier_deletedObject



12174
12175
12176
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12174

def EventType.tier_deleted
  @@_tier_deleted ||= EventType.new('tier_deleted')
end

.tier_deleted_v2Object



12198
12199
12200
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12198

def EventType.tier_deleted_v2
  @@_tier_deleted_v2 ||= EventType.new('tier_deleted_v2')
end

.tier_upsertedObject



12170
12171
12172
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12170

def EventType.tier_upserted
  @@_tier_upserted ||= EventType.new('tier_upserted')
end

.tier_upserted_v2Object



12194
12195
12196
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12194

def EventType.tier_upserted_v2
  @@_tier_upserted_v2 ||= EventType.new('tier_upserted_v2')
end

.tracking_label_event_upsertedObject



12486
12487
12488
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12486

def EventType.tracking_label_event_upserted
  @@_tracking_label_event_upserted ||= EventType.new('tracking_label_event_upserted')
end

.virtual_card_capture_deletedObject



12426
12427
12428
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12426

def EventType.virtual_card_capture_deleted
  @@_virtual_card_capture_deleted ||= EventType.new('virtual_card_capture_deleted')
end

.virtual_card_capture_upsertedObject



12422
12423
12424
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12422

def EventType.virtual_card_capture_upserted
  @@_virtual_card_capture_upserted ||= EventType.new('virtual_card_capture_upserted')
end

.virtual_card_refund_deletedObject



12434
12435
12436
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12434

def EventType.virtual_card_refund_deleted
  @@_virtual_card_refund_deleted ||= EventType.new('virtual_card_refund_deleted')
end

.virtual_card_refund_upsertedObject



12430
12431
12432
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12430

def EventType.virtual_card_refund_upserted
  @@_virtual_card_refund_upserted ||= EventType.new('virtual_card_refund_upserted')
end

Instance Method Details

#to_hashObject



12490
12491
12492
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12490

def to_hash
  value
end