/** * Salesforce Comparison Pair entity with full configuration */ export interface SalesforceComparisonPair { /** * Account identifier */ account?: string; /** * Creation timestamp * @format int64 */ created?: number; /** * Description of the Salesforce Comparison Pair */ description?: string; /** * Identifier of the Salesforce Comparison Pair */ identifier: string; /** * Metadata filter expression */ metadataFilter?: string; /** * List of Salesforce metadata types to compare */ metadataTypes?: string[]; /** * Name of the Salesforce Comparison Pair */ name: string; /** * Organization identifier */ org?: string; /** * Project identifier */ project?: string; /** * First source reference */ sourceRef1: string; /** * Type of the first source (deployable or org). Defaults to deployable if not specified. */ sourceRef1Type?: string; /** * Second source reference */ sourceRef2: string; /** * Type of the second source (deployable or org). Defaults to deployable if not specified. */ sourceRef2Type?: string; /** * Tags associated with the Salesforce Comparison Pair */ tags?: { [key: string]: string; }; /** * Last modification timestamp * @format int64 */ updated?: number; }