Component: GUIDANCE_TYPE

Abstract

Guidance type tells a potential customer whether your experience is guided and which guidance type(s) does it offer.

Values for this component can be set via ExperienceComponentsDto.guidanceTypes which is of ExperienceGuidedLanguagesDto type. Guidance settings are optional.

The structure of ExperienceGuidedLanguagesDto is as follows:

  • This JSON object can only have keys which are of ExperienceGuidanceTypeDto enum type. Please refer to Swagger documentation for possible values of this enum.
  • The values of this JSON object are arrays of strings which are locales

Example

{
   ...,
   "guidanceTypes": {
      "GUIDED": ["en", "de"],
      "HEADPHONES": ["en", "de"],
      "READING_MATERIAL": ["en", "de", "fr"]
   },
   ...
}
Did this answer your question?
😞
😐
🤩