class OpenApiSDK::Models::Operations::CustomerPortalWalletsListResponse

def ==(other)

def ==(other)
  return false unless other.is_a?(self.class)
  return false unless @content_type == other.content_type
  return false unless @status_code == other.status_code
  return false unless @raw_response == other.raw_response
  return false unless @list_resource_customer_wallet == other.list_resource_customer_wallet
  true
end

def each

def each
  page = self
  loop do
    yield page
    next_page = page.next_page.call if page.next_page
    break if next_page.nil?
    page = T.must(next_page)
  end
end

def initialize(content_type:, status_code:, raw_response:, list_resource_customer_wallet: nil)

def initialize(content_type:, status_code:, raw_response:, list_resource_customer_wallet: nil)
  @content_type = content_type
  @status_code = status_code
  @raw_response = raw_response
  @list_resource_customer_wallet = list_resource_customer_wallet
end