Submission interface
Signature:
export interface Submission
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
assets | readonly | ReadonlyMap<string, IModuleAsset> | The collection of assets that were added to the output when the submission was created. |
userInfo | readonly | UserInformation | Information about the user that created the submission |
Submission.assets property
The collection of assets that were added to the output when the submission was created.
Signature:
readonly assets: ReadonlyMap<string, IModuleAsset>;
Submission.userInfo property
Information about the user that created the submission
Signature:
readonly userInfo: UserInformation;
Updated 8 months ago