/** * 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 GetProductVariationsResponseDataInner */ export interface GetProductVariationsResponseDataInner { /** * The ID of the product variation * @type {number} */ 'id'?: number; /** * The name of the product variation * @type {string} */ 'name'?: string; /** * The ID of the product * @type {number} */ 'product_id'?: number; /** * Array of objects, each containing: product_variation_id (number), currency (string), price (number), cost (number), direct_cost (number) , notes (string) * @type {Array} */ 'prices'?: Array; }