> ## Documentation Index
> Fetch the complete documentation index at: https://superofficeas-bugfix-ty-screen-designer-paradox.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# NSRedLetterInformationListItem

> Detailed information on red-letter days, including both holidays and other days with their individual texts.

Detailed information on red-letter days, including both holidays and other days with their individual texts.

## Constructors

### NSRedLetterInformationListItem()

```crmscript theme={null}
NSRedLetterInformationListItem
```

Initializes a new instance of the NSRedLetterInformationListItem class.

## Methods

## GetDate()

```crmscript theme={null}
DateTime GetDate()
```

**Returns:** [CRMScript.Global.DateTime](CRMScript.Global.DateTime) - Date that this item is valid for; there is exactly one item per date, ordered by date.

**Example:**

```crmscript theme={null}
NSRedLetterInformationListItem thing;
DateTime date = thing.GetDate();
```

## GetRedLetterDetails()

```crmscript theme={null}
NSRedLetterDetails GetRedLetterDetails()
```

**Returns:** [CRMScript.NetServer.NSRedLetterDetails](CRMScript.NetServer.NSRedLetterDetails) - Red-letter day text details, all the texts related to the given day.

**Example:**

```crmscript theme={null}
NSRedLetterInformationListItem thing;
NSRedLetterDetails redLetterDetails = thing.GetRedLetterDetails();
```

## GetRedLetterInformation()

```crmscript theme={null}
NSRedLetterSummary GetRedLetterInformation()
```

**Returns:** [CRMScript.NetServer.NSRedLetterSummary](CRMScript.NetServer.NSRedLetterSummary) - Summary of red-letter day information\* holiday in own country, and in other countries known to the system.

**Example:**

```crmscript theme={null}
NSRedLetterInformationListItem thing;
NSRedLetterSummary redLetterInformation = thing.GetRedLetterInformation();
```

## SetDate(DateTime)

```crmscript theme={null}
Void SetDate(DateTime date)
```

**Returns:** [CRMScript.Global.Void](CRMScript.Global.Void)

**Example:**

```crmscript theme={null}
NSRedLetterInformationListItem thing;
DateTime date;
thing.SetDate(date);
```

## SetRedLetterDetails(NSRedLetterDetails)

```crmscript theme={null}
Void SetRedLetterDetails(NSRedLetterDetails redLetterDetails)
```

**Returns:** [CRMScript.Global.Void](CRMScript.Global.Void)

**Example:**

```crmscript theme={null}
NSRedLetterInformationListItem thing;
NSRedLetterDetails redLetterDetails;
thing.SetRedLetterDetails(redLetterDetails);
```

## SetRedLetterInformation(NSRedLetterSummary)

```crmscript theme={null}
Void SetRedLetterInformation(NSRedLetterSummary redLetterInformation)
```

**Returns:** [CRMScript.Global.Void](CRMScript.Global.Void)

**Example:**

```crmscript theme={null}
NSRedLetterInformationListItem thing;
NSRedLetterSummary redLetterInformation;
thing.SetRedLetterInformation(redLetterInformation);
```
