class Google::Cloud::Storage::Policy::Binding

def <=> other

Other tags:
    Private: -
def <=> other
  return nil unless other.is_a? Binding
  ret = role <=> other.role
  return ret unless ret.zero?
  ret = members <=> other.members
  return ret unless ret.zero?
  condition&.to_gapi <=> other.condition&.to_gapi
end