# File lib/aws/core/collection/with_next_token.rb, line 85 def _extract_next_token options next_token = super case next_token when nil then [nil, 0] when Hash then [next_token[:token], next_token[:offset] || 0] else [next_token, 0] end end