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