/* tslint:disable */ /* eslint-disable */ // @generated // This file was automatically generated and should not be edited. // ==================================================== // GraphQL query operation: GetMainOptions // ==================================================== export interface GetMainOptions_selectSupplierCurrency { __typename: "transactioncurrency"; label: string | null; currencysymbol: string | null; value: any | null; } export interface GetMainOptions_selectProduct { __typename: "evo_baseproduct"; label: string | null; value: any | null; } export interface GetMainOptions_selectLeaseObjectType { __typename: "evo_leasingobject_type"; label: string | null; value: any | null; } export interface GetMainOptions_selectBrand { __typename: "evo_brand"; label: string | null; value: any | null; } export interface GetMainOptions_selectDealer { __typename: "account"; label: string | null; value: any | null; } export interface GetMainOptions { /** * Валюта. statecode по умолчанию 0 */ selectSupplierCurrency: (GetMainOptions_selectSupplierCurrency | null)[] | null; selectProduct: (GetMainOptions_selectProduct | null)[] | null; selectLeaseObjectType: (GetMainOptions_selectLeaseObjectType | null)[] | null; selectBrand: (GetMainOptions_selectBrand | null)[] | null; /** * Контрагенты. statecode по умолчанию 0 */ selectDealer: (GetMainOptions_selectDealer | null)[] | null; } export interface GetMainOptionsVariables { currentDate?: any | null; }