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

# 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);
```
