Description
The Package
property of the Project
class represents the package associated with the project. This property is a mock-up of the actual package and is used internally within the project structure. It is marked with the JsonIgnore
attribute, indicating that it should not be serialized when converting the project to JSON format.
Usage
To access the package information of a project, you can use the Package
property. This property is read-only and provides a Sandbox.Package
object that contains details about the package.
Example
// Assuming 'project' is an instance of Sandbox.Project
Sandbox.Package projectPackage = project.Package;
// Use the projectPackage object to access package details
// Note: The actual implementation of Sandbox.Package is a mock-up and may not contain real data.