> ## 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.

# NSRedLetterDetails

> Red-letter day text details, all the texts related to the given day.

Red-letter day text details, all the texts related to the given day.

## Constructors

### NSRedLetterDetails()

```crmscript theme={null}
NSRedLetterDetails
```

Initializes a new instance of the NSRedLetterDetails class.

## Methods

## GetOtherCountryDayTexts()

```crmscript theme={null}
String[] GetOtherCountryDayTexts()
```

**Returns:** [CRMScript.Global.String](CRMScript.Global.String)\[] - Red-letter day texts for other countries than the associates' own country.

**Example:**

```crmscript theme={null}
NSRedLetterDetails thing;
String[] otherCountryDayTexts = thing.GetOtherCountryDayTexts();
```

## GetOwnCountryDayTexts()

```crmscript theme={null}
String[] GetOwnCountryDayTexts()
```

**Returns:** [CRMScript.Global.String](CRMScript.Global.String)\[] - Array, possibly empty, of the texts related to one day in the red-letter system.

**Example:**

```crmscript theme={null}
NSRedLetterDetails thing;
String[] ownCountryDayTexts = thing.GetOwnCountryDayTexts();
```

## SetOtherCountryDayTexts(String\[])

```crmscript theme={null}
Void SetOtherCountryDayTexts(String[] otherCountryDayTexts)
```

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

**Example:**

```crmscript theme={null}
NSRedLetterDetails thing;
String[] otherCountryDayTexts;
thing.SetOtherCountryDayTexts(otherCountryDayTexts);
```

## SetOwnCountryDayTexts(String\[])

```crmscript theme={null}
Void SetOwnCountryDayTexts(String[] ownCountryDayTexts)
```

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

**Example:**

```crmscript theme={null}
NSRedLetterDetails thing;
String[] ownCountryDayTexts;
thing.SetOwnCountryDayTexts(ownCountryDayTexts);
```
