/** * Pipedrive API v2 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface PricesArrayPricesInner */ export interface PricesArrayPricesInner { /** * The ID of the product * @type {number} */ 'product_id'?: number; /** * The price of the product * @type {number} */ 'price'?: number; /** * The currency of the price * @type {string} */ 'currency'?: string; /** * The cost of the product * @type {number} */ 'cost'?: number; /** * The direct cost of the product * @type {number} */ 'direct_cost'?: number | null; /** * The notes about the price * @type {string} */ 'notes'?: string; }