# File lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb, line 12
          def get_snapshot_details(_detailed = true)
            response        = Excon::Response.new
            response.status = 200
            response.body   = {
              'snapshot' => {
                'id'          => '1',
                'name'        => 'Snapshot1',
                'description' => 'Volume1 snapshot',
                'size'        => 1,
                'volume_id'   => '1',
                'status'      => 'available',
                'created_at'  => Time.now
              }
            }
            response
          end