## List `v1.pricing_units.list(**kwargs) -> CursorPage` **get** `/v1/credit-types/list` List all pricing units (known in the API by the legacy term "credit types"). ### Parameters - **limit:** `Integer` Max number of results that should be returned - **next\_page:** `String` Cursor that indicates where the next page of results should start. ### Returns - `class PricingUnitListResponse` - **id:** `String` - **is\_currency:** `bool` - **name:** `String` ### Example ```ruby require "metronome_sdk" metronome = MetronomeSDK::Client.new(bearer_token: "My Bearer Token") page = metronome.v1.pricing_units.list puts(page) ```