UNPKG

@salesforce/soql-model

Version:
10 lines (9 loc) 449 B
import * as Soql from '../model'; import { SoqlModelObjectImpl } from './soqlModelObjectImpl'; export declare class InListConditionImpl extends SoqlModelObjectImpl implements Soql.InListCondition { field: Soql.Field; operator: Soql.ConditionOperator; values: Soql.CompareValue[]; constructor(field: Soql.Field, operator: Soql.ConditionOperator, values: Soql.CompareValue[]); toSoqlSyntax(options?: Soql.SyntaxOptions): string; }