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

# NSRedLetterSummary

> Summary of red-letter day information - holiday in own country, and in other countries known to the system.

Summary of red-letter day information - holiday in own country, and in other countries known to the system.

## Constructors

### NSRedLetterSummary()

```crmscript theme={null}
NSRedLetterSummary
```

Initializes a new instance of the NSRedLetterSummary class.

## Methods

## GetIsOtherCountryHoliday()

```crmscript theme={null}
Bool GetIsOtherCountryHoliday()
```

**Returns:** [CRMScript.Global.Bool](CRMScript.Global.Bool) - If true, this day is a holiday in at least one of the countries that has defined associates in the system, but not in the country of the associate whose diary is being scanned.

**Example:**

```crmscript theme={null}
NSRedLetterSummary thing;
Bool isOtherCountryHoliday = thing.GetIsOtherCountryHoliday();
```

## GetIsOwnCountryHoliday()

```crmscript theme={null}
Bool GetIsOwnCountryHoliday()
```

**Returns:** [CRMScript.Global.Bool](CRMScript.Global.Bool) - If true, this day is a holiday in the country of the given associate.

**Example:**

```crmscript theme={null}
NSRedLetterSummary thing;
Bool isOwnCountryHoliday = thing.GetIsOwnCountryHoliday();
```

## SetIsOtherCountryHoliday(Bool)

```crmscript theme={null}
Void SetIsOtherCountryHoliday(Bool isOtherCountryHoliday)
```

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

**Example:**

```crmscript theme={null}
NSRedLetterSummary thing;
Bool isOtherCountryHoliday;
thing.SetIsOtherCountryHoliday(isOtherCountryHoliday);
```

## SetIsOwnCountryHoliday(Bool)

```crmscript theme={null}
Void SetIsOwnCountryHoliday(Bool isOwnCountryHoliday)
```

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

**Example:**

```crmscript theme={null}
NSRedLetterSummary thing;
Bool isOwnCountryHoliday;
thing.SetIsOwnCountryHoliday(isOwnCountryHoliday);
```


## Related topics

- [NSRedLetterInformationListItem](/en/automation/crmscript/reference/CRMScript.NetServer.NSRedLetterInformationListItem.md)
- [NSDayInformationListItem](/en/automation/crmscript/reference/CRMScript.NetServer.NSDayInformationListItem.md)
- [SuperOffice.WebApi.Data.RedLetterSummary](/en/api/reference/webapi/SuperOffice.WebApi.Data.RedLetterSummary.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)
- [SuperOffice.WebApi.Data.RedLetterInformationListItem](/en/api/reference/webapi/SuperOffice.WebApi.Data.RedLetterInformationListItem.md)
- [NSRedLetterDetails](/en/automation/crmscript/reference/CRMScript.NetServer.NSRedLetterDetails.md)
