class SignedGlobalID

def pick_expiration(options)

def pick_expiration(options)
  return options[:expires_at] if options.key?(:expires_at)
  if expires_in = options.fetch(:expires_in) { self.class.expires_in }
    expires_in.from_now
  end
end