Class: Google::Shopping::Merchant::Accounts::V1::Handshake
- Inherits:
-
Object
- Object
- Google::Shopping::Merchant::Accounts::V1::Handshake
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/shopping/merchant/accounts/v1/accountservices.rb
Overview
The current status of establishing of the service. (for example, pending approval or approved).
Defined Under Namespace
Modules: Actor, ApprovalState
Instance Attribute Summary collapse
-
#actor ⇒ ::Google::Shopping::Merchant::Accounts::V1::Handshake::Actor
readonly
Output only.
-
#approval_state ⇒ ::Google::Shopping::Merchant::Accounts::V1::Handshake::ApprovalState
readonly
Output only.
Instance Attribute Details
#actor ⇒ ::Google::Shopping::Merchant::Accounts::V1::Handshake::Actor (readonly)
Returns Output only. The most recent account to modify the account service's
approval_status.
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 |
# File 'proto_docs/google/shopping/merchant/accounts/v1/accountservices.rb', line 266 class Handshake include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The approal state of a handshake. module ApprovalState # Unspecified approval status. APPROVAL_STATE_UNSPECIFIED = 0 # The service was proposed and is waiting to be confirmed. PENDING = 1 # Both parties have confirmed the service. ESTABLISHED = 2 # The service proposal was rejected. REJECTED = 3 end # The various actors that can be involved in a handshake. module Actor # Unspecified actor. ACTOR_UNSPECIFIED = 0 # The last change was done by the account who has this service. ACCOUNT = 1 # The last change was done by the other party who this service points to. OTHER_PARTY = 2 end end |
#approval_state ⇒ ::Google::Shopping::Merchant::Accounts::V1::Handshake::ApprovalState (readonly)
Returns Output only. The approval state of this handshake.
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 |
# File 'proto_docs/google/shopping/merchant/accounts/v1/accountservices.rb', line 266 class Handshake include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The approal state of a handshake. module ApprovalState # Unspecified approval status. APPROVAL_STATE_UNSPECIFIED = 0 # The service was proposed and is waiting to be confirmed. PENDING = 1 # Both parties have confirmed the service. ESTABLISHED = 2 # The service proposal was rejected. REJECTED = 3 end # The various actors that can be involved in a handshake. module Actor # Unspecified actor. ACTOR_UNSPECIFIED = 0 # The last change was done by the account who has this service. ACCOUNT = 1 # The last change was done by the other party who this service points to. OTHER_PARTY = 2 end end |