Method: OryClient::Pagination#==
- Defined in:
- lib/ory-client/models/pagination.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
185 186 187 188 189 190 191 192 |
# File 'lib/ory-client/models/pagination.rb', line 185 def ==(o) return true if self.equal?(o) self.class == o.class && page == o.page && page_size == o.page_size && page_token == o.page_token && per_page == o.per_page end |