# File lib/fog/volume/openstack/v2/requests/get_volume_details.rb, line 12
          def get_volume_details(_detailed = true)
            response        = Excon::Response.new
            response.status = 200
            response.body   = {
              'volume' => {
                'id'                => '1',
                'name'              => Fog::Mock.random_letters(rand(8) + 5),
                'description'       => Fog::Mock.random_letters(rand(12) + 10),
                'size'              => 3,
                'volume_type'       => nil,
                'snapshot_id'       => '4',
                'status'            => 'online',
                'availability_zone' => 'nova',
                'created_at'        => Time.now,
                'attachments'       => []
              }
            }
            response
          end