Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1EntitlementEvent
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1EntitlementEvent
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudchannel_v1/classes.rb,
lib/google/apis/cloudchannel_v1/representations.rb,
lib/google/apis/cloudchannel_v1/representations.rb
Overview
Represents Pub/Sub message content describing entitlement update.
Instance Attribute Summary collapse
-
#entitlement ⇒ String
Resource name of an entitlement of the form: accounts/
account_id
/customers/customer_id
/entitlements/entitlement_id
Corresponds to the JSON propertyentitlement
. -
#event_type ⇒ String
Type of event which happened on the entitlement.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1EntitlementEvent
constructor
A new instance of GoogleCloudChannelV1EntitlementEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1EntitlementEvent
Returns a new instance of GoogleCloudChannelV1EntitlementEvent.
1324 1325 1326 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1324 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entitlement ⇒ String
Resource name of an entitlement of the form: accounts/account_id
/customers/
customer_id
/entitlements/entitlement_id
Corresponds to the JSON property entitlement
1317 1318 1319 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1317 def entitlement @entitlement end |
#event_type ⇒ String
Type of event which happened on the entitlement.
Corresponds to the JSON property eventType
1322 1323 1324 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1322 def event_type @event_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1329 1330 1331 1332 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1329 def update!(**args) @entitlement = args[:entitlement] if args.key?(:entitlement) @event_type = args[:event_type] if args.key?(:event_type) end |