Difference between revisions of "BulkMailHistory class"
(Created page with "{{CGscriptClass_Template |Name=BulkMailHistory |Description=A history item on a bulkmail send. |Methods= {{CGscriptMethods_Template|ReturnType=string|Name=ToString|Description...") |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
{{CGscriptClass_Template | {{CGscriptClass_Template | ||
− | |Name=BulkMailHistory | + | |Name=<nowiki>BulkMailHistory</nowiki> |
− | |Description=A history item on a bulkmail send. | + | |Description=<nowiki>A history item on a bulkmail send.</nowiki> |
− | |Methods= | + | |InheritsFrom=object|Methods= |
− | {{CGscriptMethods_Template|ReturnType=string|Name=ToString|Description=The string representation of the object.}} | + | {{CGscriptMethods_Template|ReturnType=string|Name=<nowiki>ToString</nowiki>|Inherited=object|Description=<nowiki>The string representation of the object.</nowiki>}} |
|Properties= | |Properties= | ||
− | {{CGscriptProperties_Template|ReturnType=int|Name=Id|HasGetter=1|Description=Id of the history}} | + | {{CGscriptProperties_Template|ReturnType=int|Name=<nowiki>Id</nowiki>|HasGetter=1|Description=<nowiki>Id of the history</nowiki>}} |
− | {{CGscriptProperties_Template|ReturnType=int|Name=NumberOfSent|HasGetter=1|Description=How many emails where generated at that time}} | + | {{CGscriptProperties_Template|ReturnType=int|Name=<nowiki>NumberOfSent</nowiki>|HasGetter=1|Description=<nowiki>How many emails where generated at that time</nowiki>}} |
− | {{CGscriptProperties_Template|ReturnType=string|Name=ObjectTypeName|HasGetter=1|Description=The name of the type of object.}} | + | {{CGscriptProperties_Template|ReturnType=string|Name=<nowiki>ObjectTypeName</nowiki>|HasGetter=1|Description=<nowiki>The name of the type of object.</nowiki>}} |
− | {{CGscriptProperties_Template|ReturnType=DateTime|Name=SentDate|HasGetter=1|Description=Date of the sending}} | + | {{CGscriptProperties_Template|ReturnType=DateTime|Name=<nowiki>SentDate</nowiki>|HasGetter=1|Description=<nowiki>Date of the sending</nowiki>}} |
− | {{CGscriptProperties_Template|ReturnType=TypeInformation|Name=TypeInformation|HasGetter=1|Description=Get information about this class.}} | + | {{CGscriptProperties_Template|ReturnType=TypeInformation|Name=<nowiki>TypeInformation</nowiki>|HasGetter=1|Inherited=object|Description=<nowiki>Get information about this class.</nowiki>}} |
}} | }} | ||
Latest revision as of 07:38, 2 July 2020
BulkMailHistory
A history item on a bulkmail send.
Parent class
Inherits from object
Methods
- (From object) string ToString() - The string representation of the object.
Properties
- int Id { get; } - Id of the history
- int NumberOfSent { get; } - How many emails where generated at that time
- string ObjectTypeName { get; } - The name of the type of object.
- DateTime SentDate { get; } - Date of the sending
- (From object) TypeInformation TypeInformation { get; } - Get information about this class.
Examples
array bulk1=BulkMail_getHistory(b[BULKMAIL_RESOURCE_ID]);
print(bulk1);
print(bulk1[0].NumberOfSent);
print(bulk1[0].SentDate);
print(bulk1[0].Id);