Source code for models_v2.object_services_mapping_config_enum

# -*- coding: utf-8 -*-

[docs]class ObjectServicesMappingConfigEnum(object): """Implementation of the 'ObjectServicesMappingConfig' enum. Specifies the Object Services key mapping config of the view. This parameter can only be set during create and cannot be changed. Configuration of Object Services key mapping. Specifies the type of Object Services key mapping config. Attributes: RANDOM: TODO: type description here. SHORT: TODO: type description here. LONG: TODO: type description here. HIERARCHICAL: TODO: type description here. """ RANDOM = 'Random' SHORT = 'Short' LONG = 'Long' HIERARCHICAL = 'Hierarchical'