/** * Salesforce Changeset metadata (list response) */ export interface SalesforceChangesetMetadata { /** * Account identifier */ account?: string; /** * Optional reference to the associated Salesforce Comparison Pair */ comparisonPairRef?: string; /** * Creation timestamp * @format int64 */ created?: number; /** * Description of the Salesforce Changeset */ description?: string; /** * Identifier of the Salesforce Changeset */ identifier?: string; /** * Metadata filter expression */ metadataFilter?: string; /** * List of Salesforce metadata types */ metadataTypes?: string[]; /** * Name of the Salesforce Changeset */ name?: string; /** * Last update timestamp for output fields * @format int64 */ nonMetadataFieldsLastUpdated?: number; /** * Organization identifier */ org?: string; /** * Project identifier */ project?: string; /** * First source reference */ source1?: string; /** * Type of the first source (deployable or org). Defaults to deployable if not specified. */ source1Type?: string; /** * Second source reference */ source2?: string; /** * Type of the second source (deployable or org). Defaults to deployable if not specified. */ source2Type?: string; /** * Tags */ tags?: { [key: string]: string; }; /** * Last update timestamp * @format int64 */ updated?: number; }