/** * Salesforce Comparison Pair create request body */ export interface SalesforceComparisonPairCreateRequest { /** * 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; /** * 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 */ tags?: { [key: string]: string; }; }