> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/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);
```


## Related topics

- [NSRedLetterInformationListItem](/en/automation/crmscript/reference/CRMScript.NetServer.NSRedLetterInformationListItem.md)
- [SuperOffice.WebApi.Data.RedLetterDetails](/en/api/reference/webapi/SuperOffice.WebApi.Data.RedLetterDetails.md)
- [SuperOffice.WebApi.Data.RedLetterInformationListItem](/en/api/reference/webapi/SuperOffice.WebApi.Data.RedLetterInformationListItem.md)
- [Get Red Letter Information List By Dates And Associate](/en/api/reference/restful/agent/appointment_agent/get-red-letter-information-list-by-dates-and-associate.md)
- [NSRedLetterSummary](/en/automation/crmscript/reference/CRMScript.NetServer.NSRedLetterSummary.md)
- [SuperOffice.WebApi.Data.RedLetterSummary](/en/api/reference/webapi/SuperOffice.WebApi.Data.RedLetterSummary.md)
