Resources
JSON Structure
The general entity attributes are inherited from the base entity object, which is defined by the IEntity class (see entity.ts file).
Definition of Resource data object can be found in resource.ts file.
export interface IResource extends IEntity {
class: EntityEnums.Class.Resource;
data: IResourceData;
}
export interface IResourceData {
url: string;
partValueLabel: string;
partValueBaseURL: string;
documentId?: string;
}
No comments to display
No comments to display