Class: SwaggerPetstore::OAuthScopeEnum

Inherits:
Object
  • Object
show all
Defined in:
lib/swagger_petstore/models/o_auth_scope_enum.rb

Overview

OAuth 2 scopes supported by the API

Constant Summary collapse

O_AUTH_SCOPE_ENUM =
[
  # read your pets

  READPETS = 'read:pets'.freeze,

  # modify pets in your account

  WRITEPETS = 'write:pets'.freeze
].freeze