Class NSReportEntity
Syntax
Constructors
NSReportEntity()
Initializes a new instance of the NSReportEntity class.
Declaration
Methods
GetAssociateId()
Declaration
Returns
Type |
Description |
Integer |
The owner of the report.
|
Examples
NSReportEntity thing;
Integer associateId = thing.GetAssociateId();
GetDescription()
Declaration
Returns
Type |
Description |
String |
The description of the report.
|
Examples
NSReportEntity thing;
String description = thing.GetDescription();
GetName()
Declaration
Returns
Type |
Description |
String |
The name of the report.
|
Examples
NSReportEntity thing;
String name = thing.GetName();
GetPublished()
Declaration
Returns
Type |
Description |
Bool |
Is the report published?
|
Examples
NSReportEntity thing;
Bool published = thing.GetPublished();
GetReportCategory()
Declaration
Integer GetReportCategory()
Returns
Examples
NSReportEntity thing;
Integer reportCategory = thing.GetReportCategory();
GetReportId()
Declaration
Returns
Type |
Description |
Integer |
The ID of the report.
|
Examples
NSReportEntity thing;
Integer reportId = thing.GetReportId();
GetReportLayout()
Declaration
Integer GetReportLayout()
Returns
Examples
NSReportEntity thing;
Integer reportLayout = thing.GetReportLayout();
GetTemplateId()
Declaration
Returns
Type |
Description |
Integer |
The ID of report template.
|
Examples
NSReportEntity thing;
Integer templateId = thing.GetTemplateId();
SetAssociateId(Integer)
Declaration
Void SetAssociateId(Integer associateId)
Parameters
Type |
Name |
Description |
Integer |
associateId |
The owner of the report.
|
Returns
Examples
NSReportEntity thing;
Integer associateId;
thing.SetAssociateId(associateId);
SetDescription(String)
Declaration
Void SetDescription(String description)
Parameters
Type |
Name |
Description |
String |
description |
The description of the report.
|
Returns
Examples
NSReportEntity thing;
String description;
thing.SetDescription(description);
SetName(String)
Declaration
Void SetName(String name)
Parameters
Type |
Name |
Description |
String |
name |
The name of the report.
|
Returns
Examples
NSReportEntity thing;
String name;
thing.SetName(name);
SetPublished(Bool)
Declaration
Void SetPublished(Bool published)
Parameters
Type |
Name |
Description |
Bool |
published |
Is the report published?
|
Returns
Examples
NSReportEntity thing;
Bool published;
thing.SetPublished(published);
SetReportCategory(Integer)
Declaration
Void SetReportCategory(Integer reportCategory)
Parameters
Returns
Examples
NSReportEntity thing;
Integer reportCategory;
thing.SetReportCategory(reportCategory);
SetReportId(Integer)
Declaration
Void SetReportId(Integer reportId)
Parameters
Type |
Name |
Description |
Integer |
reportId |
The ID of the report.
|
Returns
Examples
NSReportEntity thing;
Integer reportId;
thing.SetReportId(reportId);
SetReportLayout(Integer)
Declaration
Void SetReportLayout(Integer reportLayout)
Parameters
Returns
Examples
NSReportEntity thing;
Integer reportLayout;
thing.SetReportLayout(reportLayout);
SetTemplateId(Integer)
Declaration
Void SetTemplateId(Integer templateId)
Parameters
Type |
Name |
Description |
Integer |
templateId |
The ID of report template.
|
Returns
Examples
NSReportEntity thing;
Integer templateId;
thing.SetTemplateId(templateId);