48 lines
1.3 KiB
TypeScript

/* 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_selectGPSBrand {
__typename: "evo_gps_brand";
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;
selectGPSBrand: (GetMainOptions_selectGPSBrand | null)[] | null;
}
export interface GetMainOptionsVariables {
currentDate?: any | null;
}