# frozen_string_literal: true module OpenRecycling module Core class RecyclingAccounts < OpenRecycling::Resource def initialize(base_url: nil, jwt_token: nil) super( root_node_singular: "recyclingAccount", root_node_plural: "recyclingAccounts", api_url: "#{base_url}/recycling_accounts", jwt_token: jwt_token ) end end end end