/************************************************************************* * Copyright 2025 Adobe * All Rights Reserved. * * NOTICE: Adobe permits you to use, modify, and distribute this file in * accordance with the terms of the Adobe license agreement accompanying * it. If you have received this file from a source other than Adobe, * then your use, modification, or distribution of it requires the prior * written permission of Adobe. **************************************************************************/ /** * User Sandbox Interface */ export interface Sandbox { /** * Whether it is the default sandbox */ isDefault: boolean; /** * Sandbox ID */ name: string; /** * Region */ region: string; /** * Current state */ state: string; /** * Sandbox Display Title */ title: string; /** * Environment type */ type: string; } /** * User SubOrg Interface */ export interface SubOrg { /** * SubOrg ID */ id: string; /** * Whether this was the last used SubOrg */ lastUsed: boolean; /** * Human readable name */ name: string; /** * [DEPRECATED] Default path property. */ orgIdName: string; /** * Org ID */ owningEntity: string; /** * Path specific version of the name */ path: string; /** * Whether this is the preferred SubOrg for the Org */ preferred: boolean; }