Solvimon pricingPlanVersions API
The pricingPlanVersions API from Solvimon — 2 operation(s) for pricingplanversions.
The pricingPlanVersions API from Solvimon — 2 operation(s) for pricingplanversions.
openapi: 3.1.0
info:
title: Configuration alertRules pricingPlanVersions API
version: 1.0.0
servers:
- url: https://test.api.solvimon.com
description: The TEST environment for our API
- url: https://api.solvimon.com
description: The live environment for our API
tags:
- name: pricingPlanVersions
paths:
/v{version}/pricing-plan-versions/{resourceId}:
get:
operationId: getPricingPlanVersionsByResourceId
summary: Get a pricing plan version by ID
tags:
- pricingPlanVersions
parameters:
- name: version
in: path
description: version
required: true
schema:
type: string
default: '1'
- name: resourceId
in: path
description: The ID of the resource to be requested.
required: true
schema:
type: string
default: ''
- name: expand[]
in: query
description: The id fields of the resources that are going to be expanded.
required: false
schema:
type: array
items:
type: string
- name: X-API-KEY
in: header
required: true
schema:
type: string
- name: x-platform-id
in: header
description: Platform ID.
required: false
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PricingPlanVersion'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
delete:
operationId: deletePricingPlanVersionsByResourceId
summary: Delete a pricing plan version by resource ID
tags:
- pricingPlanVersions
parameters:
- name: version
in: path
description: version
required: true
schema:
type: string
default: '1'
- name: resourceId
in: path
description: The ID of the resource to be requested.
required: true
schema:
type: string
default: ''
- name: X-API-KEY
in: header
required: true
schema:
type: string
- name: x-platform-id
in: header
description: Platform ID.
required: false
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PricingPlanVersion'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
patch:
operationId: patchPricingPlanVersionsByResourceId
summary: Update a pricing plan version
tags:
- pricingPlanVersions
parameters:
- name: version
in: path
description: version
required: true
schema:
type: string
default: '1'
- name: resourceId
in: path
description: The ID of the resource to be requested.
required: true
schema:
type: string
default: ''
- name: X-API-KEY
in: header
required: true
schema:
type: string
- name: x-platform-id
in: header
description: Platform ID.
required: false
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PricingPlanVersion'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
'409':
description: Conflict
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/PricingPlanVersionUpdateRequest'
/v{version}/pricing-plan-versions:
post:
operationId: postPricingPlanVersions
summary: Create a pricing plan version
tags:
- pricingPlanVersions
parameters:
- name: version
in: path
description: version
required: true
schema:
type: string
default: '1'
- name: X-API-KEY
in: header
required: true
schema:
type: string
- name: x-platform-id
in: header
description: Platform ID.
required: false
schema:
type: string
responses:
'201':
description: Created
content:
application/json:
schema:
$ref: '#/components/schemas/PricingPlanVersion'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
'409':
description: Conflict
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/PricingPlanVersionCreateRequest'
put:
operationId: putPricingPlanVersions
summary: Update or create a pricing plan version (upsert)
tags:
- pricingPlanVersions
parameters:
- name: version
in: path
description: version
required: true
schema:
type: string
default: '1'
- name: X-API-KEY
in: header
required: true
schema:
type: string
- name: x-platform-id
in: header
description: Platform ID.
required: false
schema:
type: string
responses:
'201':
description: Created
content:
application/json:
schema:
$ref: '#/components/schemas/PricingPlanVersion'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/PricingPlanVersionCreateRequest'
components:
schemas:
PricingPlanUpdateRequestAmountType:
type: string
enum:
- EXCLUDING_TAX
- INCLUDING_TAX
description: Set to determine whether the pricings in this pricing plan are including or excluding tax. The default, if left empty, is excluding tax.
title: PricingPlanUpdateRequestAmountType
PricingCurrencySettingsUpdateRequest:
type: object
properties:
default_pricing_currency:
type:
- string
- 'null'
pricing_currencies:
type:
- array
- 'null'
items:
type: string
title: PricingCurrencySettingsUpdateRequest
RateCardUpdateRequest:
type: object
properties:
start_at:
type:
- string
- 'null'
format: date-time
title: RateCardUpdateRequest
RateCardCreateRequest:
type: object
properties:
start_at:
type:
- string
- 'null'
format: date-time
title: RateCardCreateRequest
PricingPlanCreateRequestType:
type: string
enum:
- STANDARD
- CUSTOM
title: PricingPlanCreateRequestType
PricingItemConfigPricingType:
type: string
enum:
- FLAT
- FLAT_TOP_UP
- TIERED
- TIERED_TOP_UP
- TOP_TIERED
- STAIR_STEP
- STAIR_STEP_TOP_UP
- FIXED
- PASS_THROUGH
- NONE
title: PricingItemConfigPricingType
WalletTypeCreditCreditsGrant:
type: object
properties:
credit_type_id:
type: string
description: The credit type for wallets of wallet type.
title: WalletTypeCreditCreditsGrant
PricingCurrencySettingsCreateRequest:
type: object
properties:
default_pricing_currency:
type:
- string
- 'null'
pricing_currencies:
type:
- array
- 'null'
items:
type: string
title: PricingCurrencySettingsCreateRequest
PricingPlanVersionUpdateRequest:
type: object
properties:
object_type:
type:
- string
- 'null'
id:
type:
- string
- 'null'
pricing_plan_id:
type:
- string
- 'null'
description: The resource ID of the pricing plan.
pricing_plan:
oneOf:
- $ref: '#/components/schemas/PricingPlanUpdateRequest'
- type: 'null'
version:
type:
- integer
- 'null'
description: The value describing the version of the pricing plan.
status:
oneOf:
- $ref: '#/components/schemas/PricingPlanVersionUpdateRequestStatus'
- type: 'null'
pricing_currency_settings:
$ref: '#/components/schemas/PricingCurrencySettingsUpdateRequest'
billing_period_settings:
$ref: '#/components/schemas/BillingPeriodSettingsUpdateRequest'
copied_from_pricing_plan_version_id:
type:
- string
- 'null'
description: The id of the pricing plan version from which this pricing plan version was copied
pricing_categories:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/PricingCategoryUpdateRequest'
description: The list of priced categories that are within the pricing plan.
credit_types:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/CreditTypeUpdateRequest'
rate_card:
$ref: '#/components/schemas/RateCardUpdateRequest'
title: PricingPlanVersionUpdateRequest
PricingPlanCreateRequestVariant:
type: string
enum:
- DEFAULT
- RATE_CARD
title: PricingPlanCreateRequestVariant
MeterPropertyConditionComparator:
type: string
enum:
- EQUALS
- NOT_EQUALS
- IN
- NOT_IN
- GREATER_THAN
- GREATER_THAN_OR_EQUALS
- LESS_THAN
- LESS_THAN_OR_EQUALS
- EMPTY
- NOT_EMPTY
- CONTAINS
- NOT_CONTAINS
title: MeterPropertyConditionComparator
LinkedIntegration:
type: object
properties:
id:
type: string
link_details:
type: array
items:
$ref: '#/components/schemas/LinkDetail'
title: LinkedIntegration
IntegrationDetails:
type: object
properties:
id:
type:
- string
- 'null'
reference:
type:
- string
- 'null'
payment_gateway_variant:
$ref: '#/components/schemas/IntegrationDetailsPaymentGatewayVariant'
adyen:
$ref: '#/components/schemas/AdyenIntegrationDetails'
stripe:
$ref: '#/components/schemas/StripeIntegrationDetails'
title: IntegrationDetails
WalletTypeCreditAmountGrantTaxCategory:
type: string
enum:
- STANDARD
- NO_TAX
- EXEMPT
description: The tax category to for what the wallet can be applied to.
title: WalletTypeCreditAmountGrantTaxCategory
SelectionRuleCreateRequestType:
type: string
enum:
- RESOURCE
title: SelectionRuleCreateRequestType
MeterStatus:
type: string
enum:
- DRAFT
- ACTIVE
- ARCHIVED
- DEPRECATED
description: The status of the meter indicating the activity of the meter and the ability to update properties.
title: MeterStatus
PricingItemConfigWalletGrant:
type: object
properties:
wallet_type_id:
type: string
description: Resource ID of type WALLET_TYPE
wallet_type:
oneOf:
- $ref: '#/components/schemas/WalletType'
- type: 'null'
amount_grant:
$ref: '#/components/schemas/PricingItemConfigWalletGrantAmountGrant'
credits_grant:
$ref: '#/components/schemas/PricingItemConfigWalletGrantCreditsGrant'
expiry_policy:
$ref: '#/components/schemas/PricingItemConfigWalletGrantExpiryPolicy'
title: PricingItemConfigWalletGrant
PricingItemBillingPeriodConfig:
type: object
properties:
billing_period:
$ref: '#/components/schemas/Period'
configs:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/PricingItemConfig'
title: PricingItemBillingPeriodConfig
ProductStatus:
type: string
enum:
- DRAFT
- ACTIVE
- ARCHIVED
- DEPRECATED
description: The status of the product.
title: ProductStatus
WalletTypeStatus:
type: string
enum:
- DRAFT
- ACTIVE
- INACTIVE
- DEPRECATED
- ARCHIVED
title: WalletTypeStatus
PricingItemConfigConditionsConfigsItems:
type: object
properties: {}
title: PricingItemConfigConditionsConfigsItems
ProductItemModelType:
type: string
enum:
- USAGE_BASED
- USAGE_BASED_CONVERSION
- RECURRING
- ONE_OFF
- PER_SEAT
- CREDITS
title: ProductItemModelType
PricingItemConfigWalletGrantCreditsGrant:
type: object
properties:
credits:
$ref: '#/components/schemas/Credits'
conversion:
type:
- string
- 'null'
title: PricingItemConfigWalletGrantCreditsGrant
ProductItemCredits:
type: object
properties:
credit_type_id:
type:
- string
- 'null'
description: The linked meter value calculation
credit_type:
oneOf:
- $ref: '#/components/schemas/CreditType'
- type: 'null'
title: ProductItemCredits
CreditTypeCreateRequestStatus:
type: string
enum:
- DRAFT
- ACTIVE
- INACTIVE
- DEPRECATED
- ARCHIVED
title: CreditTypeCreateRequestStatus
ApiErrorType:
type: string
enum:
- API_ERROR
- INVALID_REQUEST
title: ApiErrorType
CreditTypeUpdateRequest:
type: object
properties:
object_type:
type:
- string
- 'null'
id:
type:
- string
- 'null'
reference:
type: string
status:
oneOf:
- $ref: '#/components/schemas/CreditTypeUpdateRequestStatus'
- type: 'null'
name:
type: string
description:
type:
- string
- 'null'
unit_name:
$ref: '#/components/schemas/UnitName'
created_at:
type:
- string
- 'null'
updated_at:
type:
- string
- 'null'
title: CreditTypeUpdateRequest
ApiError:
type: object
properties:
type:
$ref: '#/components/schemas/ApiErrorType'
code:
$ref: '#/components/schemas/ApiErrorCode'
field:
type:
- string
- 'null'
message:
type: string
resource_id:
type:
- string
- 'null'
resource_type:
oneOf:
- $ref: '#/components/schemas/ApiErrorResourceType'
- type: 'null'
required:
- type
- code
- message
title: ApiError
CreditType:
type: object
properties:
object_type:
type:
- string
- 'null'
id:
type:
- string
- 'null'
reference:
type: string
status:
oneOf:
- $ref: '#/components/schemas/CreditTypeStatus'
- type: 'null'
name:
type: string
description:
type:
- string
- 'null'
unit_name:
$ref: '#/components/schemas/UnitName'
created_at:
type:
- string
- 'null'
updated_at:
type:
- string
- 'null'
title: CreditType
PricingItemConfigType:
type: string
enum:
- FLAT
- FLAT_TOP_UP
- TIERED
- TIERED_TOP_UP
- TOP_TIERED
- STAIR_STEP
- STAIR_STEP_TOP_UP
- FIXED
- PASS_THROUGH
- NONE
title: PricingItemConfigType
PricingGroup:
type: object
properties:
object_type:
type:
- string
- 'null'
id:
type:
- string
- 'null'
pricing_plan_version_id:
type:
- string
- 'null'
description: Resource ID of type PRICING_PLAN_VERSION
pricing_plan_schedule_id:
type:
- string
- 'null'
description: Resource ID of type PRICING_PLAN_SCHEDULE
name:
type:
- string
- 'null'
product_type:
oneOf:
- $ref: '#/components/schemas/PricingGroupProductType'
- type: 'null'
selection_constraint:
oneOf:
- $ref: '#/components/schemas/PricingGroupSelectionConstraint'
- type: 'null'
display_order:
type:
- integer
- 'null'
pricings:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/Pricing'
title: PricingGroup
PricingItemConfigDetailsPricingType:
type: string
enum:
- FLAT
- FLAT_TOP_UP
- TIERED
- TIERED_TOP_UP
- TOP_TIERED
- STAIR_STEP
- STAIR_STEP_TOP_UP
- FIXED
- PASS_THROUGH
- NONE
title: PricingItemConfigDetailsPricingType
PricingItemPricingCurrencyConfigCurrency:
type: string
enum:
- AED
- AFN
- ALL
- AMD
- ANG
- AOA
- ARS
- AUD
- AWG
- AZN
- BAM
- BBD
- BDT
- BGN
- BHD
- BIF
- BMD
- BND
- BOB
- BRL
- BSD
- BTN
- BWP
- BYN
- BZD
- CAD
- CDF
- CHF
- CLF
- CLP
- CNY
- COP
- CRC
- CUC
- CUP
- CVE
- CZK
- DJF
- DKK
- DOP
- DZD
- EGP
- ERN
- ETB
- EUR
- FJD
- FKP
- GBP
- GEL
- GHS
- GIP
- GMD
- GNF
- GTQ
- GYD
- HKD
- HNL
- HRK
- HTG
- HUF
- IDR
- ILS
- INR
- IQD
- IRR
- ISK
- JMD
- JOD
- JPY
- KES
- KGS
- KHR
- KMF
- KPW
- KRW
- KWD
- KYD
- KZT
- LAK
- LBP
- LKR
- LRD
- LSL
- LYD
- MAD
- MDL
- MGA
- MKD
- MMK
- MNT
- MOP
- MRO
- MRU
- MUR
- MVR
- MWK
- MXN
- MXV
- MYR
- MZN
- NAD
- NGN
- NIO
- NOK
- NPR
- NZD
- OMR
- PAB
- PEN
- PGK
- PHP
- PKR
- PLN
- PYG
- QAR
- RON
- RSD
- RUB
- RWF
- SAR
- SBD
- SCR
- SDG
- SEK
- SGD
- SHP
- SLE
- SOS
- SRD
- SSP
- STN
- SVC
- SYP
- SZL
- THB
- TJS
- TMT
- TND
- TOP
- TRY
- TTD
- TWD
- TZS
- UAH
- UGX
- USD
- USN
- UYI
- UYU
- UZS
- VEF
- VES
- VND
- VUV
- WST
- XAF
- XAG
- XAU
- XBA
- XBB
- XBC
- XBD
- XCD
- XDR
- XOF
- XPD
- XPF
- XPT
- XSU
- XTS
- XUA
- XXX
- YER
- ZAR
- ZMW
- ZWL
title: PricingItemPricingCurrencyConfigCurrency
ProductTaxCategory:
type: string
enum:
- STANDARD
- NO_TAX
- EXEMPT
description: The default tax category applied to the product.
title: ProductTaxCategory
Product:
type: object
properties:
object_type:
type:
- string
- 'null'
id:
type:
- string
- 'null'
category_id:
type: string
description: The resource ID of the product category, that belongs to the product.
category:
oneOf:
- $ref: '#/components/schemas/ProductCategory'
- type: 'null'
parent_product_id:
type:
- string
- 'null'
description: The resource ID of the original product, to which the product will belong to.
name:
type: string
reference:
type: string
description:
type:
- string
- 'null'
status:
oneOf:
- $ref: '#/components/schemas/ProductStatus'
- type: 'null'
description: The status of the product.
product_type:
$ref: '#/components/schemas/ProductProductType'
tax_category:
oneOf:
- $ref: '#/components/schemas/ProductTaxCategory'
- type: 'null'
description: The default tax category applied to the product.
features:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/FeatureResourceReference'
description: The features associated with the product.
custom_fields:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/CustomFieldValue'
display_order:
type:
- integer
- 'null'
description: Determines the order in which products are displayed on overview pages and invoices. The lowest number gets the highest priority.
linked_integrations:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/LinkedIntegration'
billing_entity_id:
type:
- string
- 'null'
description: The resource ID of the billing entity linked to this product.
customer_id:
type:
- string
- 'null'
title: Product
PricingItemConfigBand:
type: object
properties:
amount:
$ref: '#/components/schemas/Amount'
percentage:
type:
- string
- 'null'
credits:
$ref: '#/components/schemas/Credits'
fixed_amount:
$ref: '#/components/schemas/Amount'
maximum_amount:
$ref: '#/components/schemas/Amount'
minimum_amount:
$ref: '#/components/schemas/Amount'
maximum_number:
type:
- string
- 'null'
minimum_number:
type:
- string
- 'null'
block_size:
$ref: '#/components/schemas/PricingItemConfigMeterValue'
tier_top_bound:
$ref: '#/components/schemas/PricingItemConfigMeterValue'
title: PricingItemConfigBand
PricingItemConfigOriginalPricingItemConfig:
type: object
properties: {}
description: This property creates a circular reference in the `PricingItemConfig` schema. If you experience any issues with OpenAPI tools related to these circular references, you can try removing this property from the specification.
title: PricingItemConfigOriginalPricingItemConfig
PricingItemConfigSplitPricing:
type: object
properties:
meter_properties:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/MeterPropertySplitPricing'
title: PricingItemConfigSplitPricing
ProductCategoryTaxCategory:
type: string
enum:
- STANDARD
- NO_TAX
- EXEMPT
description: The default tax category applied to the products in the product category.
title: ProductCategoryTaxCategory
CustomFieldValue:
type: object
properties:
id:
type:
- string
- 'null'
description: Resource ID of type CUSTOM_FIELD
reference:
type:
- string
- 'null'
value:
type:
- string
- 'null'
values:
type:
- array
- 'null'
items:
type: string
integration_details:
oneOf:
- $ref: '#/components/schemas/IntegrationDetails'
- type: 'null'
integration_id:
type: string
description: The resource ID of the integration linked to the custom field
title: CustomFieldValue
BillingPeriodSettingsUpdateRequest:
type: object
properties:
billing_periods:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/BillingPeriodOption'
title: BillingPeriodSettingsUpdateRequest
SelectionRuleType:
type: string
enum:
- RESOURCE
title: SelectionRuleType
SelectionRule:
type: object
properties:
type:
$ref: '#/components/schemas/SelectionRuleType'
resource:
$ref: '#/components/schemas/SelectionRuleResource'
title: SelectionRule
WalletType:
type: object
properties:
object_type:
type:
- string
- 'null'
id:
type:
- string
- 'null'
name:
type: string
reference:
type: string
status:
oneOf:
- $ref: '#/components/schemas/WalletTypeStatus'
- type: 'null'
type:
oneOf:
- $ref: '#/components/schemas/WalletTypeType'
- type: 'null'
credit:
$ref: '#/components/schemas/WalletTypeCredit'
balance:
$ref: '#/components/schemas/WalletTypeBalance'
created_at:
type:
- string
- 'null'
updated_at:
type:
- string
- 'null'
title: WalletType
MeterPropertySplitPricing:
type: object
properties:
id:
type:
- string
- 'null'
description: Resource ID of type METER_PROPERTY
reference:
type:
- string
- 'null'
value:
type:
- string
- 'null'
meter_property:
oneOf:
- $ref: '#/components/schemas/MeterProperty'
- type: 'null'
title: MeterPropertySplitPricing
PricingProductType:
type: string
enum:
- DEFAULT
- ADDON
title: PricingProductType
PricingPlanUpdateRequest:
type: object
properties:
object_type:
type:
- string
- 'null'
id:
type:
- string
- 'null'
reference:
type: string
name:
type:
- string
- 'null'
description:
type:
- string
- 'null'
customer_id:
type:
- string
- 'null'
description: Resource ID of type CUSTOMER
type:
oneOf:
- $ref: '#/components/schemas/PricingPlanUpdateRequestType'
- type: 'null'
amount_type:
$ref: '#/components/schemas/PricingPlanUpdateRequestAmountType'
description: Set to determine whether the pricings in this pricing plan are including or excluding tax. The default, if left empty, is excluding tax.
pricing_plan_version_infos:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/PricingPlanVersionInfoUpdateRequest'
pricing_plan_selection_rules:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/SelectionRuleUpdateRequest'
pricing_currencies:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/PricingPlanUpdateRequestPricingCurrenciesItems'
description: The default alphabetic currency code representing the type of currency that can be used for the pricings.
variant:
oneOf:
- $ref: '#/components/schemas/PricingPlanUpdateRequestVariant'
- type: 'null'
custom_fields:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/CustomFieldValueUpdateRequest'
description: Custom fields associated to this pricing plan
title: PricingPlanUpdateRequest
PeriodType:
type: string
enum:
- DAY
- WEEK
- MONTH
- YEAR
title: PeriodType
PricingOverride:
type: string
enum:
- ALL
- SPECIFIC
title: PricingOverride
Pric
# --- truncated at 32 KB (95 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/solvimon/refs/heads/main/openapi/solvimon-pricingplanversions-api-openapi.yml