/** * Details to find Git Entity including Git Sync Config Id and Branch Name. */ export interface GitEntityFindInfoDto { /** * The branch name. */ branch?: string; /** * If true, return all default entities. */ defaultFromOtherRepo?: boolean; /** * Account identifier of parent entity. */ parentEntityAccountIdentifier?: string; /** * Connector ref of parent entity if remote. */ parentEntityConnectorRef?: string; /** * Organization identifier of parent entity. */ parentEntityOrgIdentifier?: string; /** * Project identifier of parent entity. */ parentEntityProjectIdentifier?: string; /** * Repo name of parent entity if remote. */ parentEntityRepoName?: string; /** * Repository name. */ repoName?: string; /** * Git Sync Config ID. */ yamlGitConfigId?: string; }