33 lines
898 B
TypeScript
33 lines
898 B
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
// @generated
|
|
// This file was automatically generated and should not be edited.
|
|
|
|
// ====================================================
|
|
// GraphQL query operation: GetOwnerData
|
|
// ====================================================
|
|
|
|
export interface GetOwnerData_selectLead {
|
|
__typename: "lead";
|
|
label: string | null;
|
|
value: any | null;
|
|
}
|
|
|
|
export interface GetOwnerData_selectOpportunity {
|
|
__typename: "opportunity";
|
|
label: string | null;
|
|
value: any | null;
|
|
}
|
|
|
|
export interface GetOwnerData {
|
|
/**
|
|
* Интересы. statecode по умолчанию 0, можно отфильтровать по ownerid и/или domainName
|
|
*/
|
|
selectLead: (GetOwnerData_selectLead | null)[] | null;
|
|
selectOpportunity: (GetOwnerData_selectOpportunity | null)[] | null;
|
|
}
|
|
|
|
export interface GetOwnerDataVariables {
|
|
domainname?: string | null;
|
|
}
|