Class: VmaApi::Endpoints::RevokeToken
- Inherits:
-
VmaApi::Endpoint
- Object
- PartnerApi::Endpoints::Base
- VmaApi::Endpoint
- VmaApi::Endpoints::RevokeToken
- Includes:
- PartnerApi::Endpoints::Initializer
- Defined in:
- lib/vma_api/endpoints/revoke_token.rb
Instance Method Summary collapse
-
#initialize(token:, request_id: SecureRandom.uuid) ⇒ RevokeToken
constructor
A new instance of RevokeToken.
Methods included from PartnerApi::Endpoints::Initializer
Methods inherited from PartnerApi::Endpoints::Base
Constructor Details
#initialize(token:, request_id: SecureRandom.uuid) ⇒ RevokeToken
Returns a new instance of RevokeToken.
8 9 10 11 |
# File 'lib/vma_api/endpoints/revoke_token.rb', line 8 def initialize(token:, request_id: SecureRandom.uuid) @token = token @request_id = request_id end |