BaseSite
Representation of a Base Site BaseSite
export interface BaseSite {
'captchaConfig'?: CaptchaConfig;
'channel'?: string;
'defaultLanguage'?: Language;
'defaultPreviewCatalogId'?: string;
'defaultPreviewCategoryCode'?: string;
'defaultPreviewProductCode'?: string;
'isolated'?: boolean;
'locale'?: string;
'name'?: string;
'registrationEnabled'?: boolean;
'requiresAuthentication'?: boolean;
'stores'?: Array<BaseStore>;
'theme'?: string;
'uid'?: string;
'urlEncodingAttributes'?: Array<string>;
'urlPatterns'?: Array<string>;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
captchaConfig | Optional | CaptchaConfig | {CaptchaConfig} BaseSite |
channel | Optional | string | Channel {string} BaseSite |
defaultLanguage | Optional | Language | {Language} BaseSite |
defaultPreviewCatalogId | Optional | string | Default preview catalog id {string} BaseSite |
defaultPreviewCategoryCode | Optional | string | Default preview category code {string} BaseSite |
defaultPreviewProductCode | Optional | string | Default preview product code {string} BaseSite |
isolated | Optional | boolean | Indicates whether customer data isolation is enabled for this site. If true, customer can get site information after registration, For example registerd username is name@sap.com, returned uid will be name@sap.com|baseSiteUid {boolean} BaseSite |
locale | Optional | string | Locale data for Basesite {string} BaseSite |
name | Optional | string | Name of Basesite {string} BaseSite |
registrationEnabled | Optional | boolean | Indicates if the website supports registration {boolean} BaseSite |
requiresAuthentication | Optional | boolean | Indicates if the BaseSite requires authentication prior to use it {boolean} BaseSite |
stores | Optional | Array<BaseStore> | List of Basestores {Array<BaseStore>} BaseSite |
theme | Optional | string | Theme of Basesite {string} BaseSite |
uid | Optional | string | Unique identifier of Basesite {string} BaseSite |
urlEncodingAttributes | Optional | Array<string> | List of url encoding attributes {Array<string>} BaseSite |
urlPatterns | Optional | Array<string> | List of url patterns {Array<string>} BaseSite |