Class: Google::Cloud::Channel::V1::CustomerEvent
- Inherits:
-
Object
- Object
- Google::Cloud::Channel::V1::CustomerEvent
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/channel/v1/subscriber_event.rb
Overview
Represents Pub/Sub message content describing customer update.
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
-
#customer ⇒ ::String
Resource name of the customer.
-
#event_type ⇒ ::Google::Cloud::Channel::V1::CustomerEvent::Type
Type of event which happened on the customer.
Instance Attribute Details
#customer ⇒ ::String
Returns Resource name of the customer. Format: accounts/{account_id}/customers/{customer_id}.
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'proto_docs/google/cloud/channel/v1/subscriber_event.rb', line 32 class CustomerEvent include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Type of customer event. module Type # Not used. TYPE_UNSPECIFIED = 0 # Primary domain for customer was changed. PRIMARY_DOMAIN_CHANGED = 1 # Primary domain of the customer has been verified. PRIMARY_DOMAIN_VERIFIED = 2 end end |
#event_type ⇒ ::Google::Cloud::Channel::V1::CustomerEvent::Type
Returns Type of event which happened on the customer.
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'proto_docs/google/cloud/channel/v1/subscriber_event.rb', line 32 class CustomerEvent include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Type of customer event. module Type # Not used. TYPE_UNSPECIFIED = 0 # Primary domain for customer was changed. PRIMARY_DOMAIN_CHANGED = 1 # Primary domain of the customer has been verified. PRIMARY_DOMAIN_VERIFIED = 2 end end |