/** * Pipedrive API v1 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.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. */ import { GetDealsSummaryResponseDataValuesTotal } from './get-deals-summary-response-data-values-total'; import { GetDealsSummaryResponseDataWeightedValuesTotal } from './get-deals-summary-response-data-weighted-values-total'; /** * The summary of deals * @export * @interface GetDealsSummaryResponseData */ export interface GetDealsSummaryResponseData { /** * * @type {GetDealsSummaryResponseDataValuesTotal} */ 'values_total'?: GetDealsSummaryResponseDataValuesTotal; /** * * @type {GetDealsSummaryResponseDataWeightedValuesTotal} */ 'weighted_values_total'?: GetDealsSummaryResponseDataWeightedValuesTotal; /** * The total number of deals * @type {number} */ 'total_count'?: number; /** * The total value of deals converted into the company default currency * @type {number} */ 'total_currency_converted_value'?: number; /** * The total weighted value of deals converted into the company default currency * @type {number} */ 'total_weighted_currency_converted_value'?: number; /** * The total converted value of deals formatted with the company default currency. E.g. US$5,100.96 * @type {string} */ 'total_currency_converted_value_formatted'?: string; /** * The total weighted value of deals formatted with the company default currency. E.g. US$5,100.96 * @type {string} */ 'total_weighted_currency_converted_value_formatted'?: string; }