Class: Clerk::Models::Operations::ListAllowlistIdentifiersRequest
- Inherits:
-
Object
- Object
- Clerk::Models::Operations::ListAllowlistIdentifiersRequest
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/clerk/models/operations/listallowlistidentifiers_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(paginated: nil, limit: 10, offset: 0) ⇒ ListAllowlistIdentifiersRequest
constructor
A new instance of ListAllowlistIdentifiersRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(paginated: nil, limit: 10, offset: 0) ⇒ ListAllowlistIdentifiersRequest
Returns a new instance of ListAllowlistIdentifiersRequest.
28 29 30 31 32 |
# File 'lib/clerk/models/operations/listallowlistidentifiers_request.rb', line 28 def initialize(paginated: nil, limit: 10, offset: 0) @paginated = paginated @limit = limit @offset = offset end |
Instance Method Details
#==(other) ⇒ Object
35 36 37 38 39 40 41 |
# File 'lib/clerk/models/operations/listallowlistidentifiers_request.rb', line 35 def ==(other) return false unless other.is_a? self.class return false unless @paginated == other.paginated return false unless @limit == other.limit return false unless @offset == other.offset true end |