Source code for pylero.enum_custom_field_type

# -*- coding: utf8 -*-
from __future__ import absolute_import, division, print_function
from __future__ import unicode_literals
from pylero.base_polarion import BasePolarion


[docs]class EnumCustomFieldType(BasePolarion): """Object to handle the Polarion WSDL tns5:EnumCustomFieldType class Attributes: default_value (anyType) depends_on (string) description (string) enum_id (string) id (string) name (string) required (boolean) type (string) """ # id field is called cft_id and not enum_custom_field_type_id because it is # often mixed with custom_field_type and they need to be accessed # interchangeably _cls_suds_map = {"default_value": "defaultValue", "depends_on": "dependsOn", "description": "description", "enum_id": "enumId", "cft_id": "id", "name": "name", "required": "required", "type": "type", "uri": "_uri", "_unresolved": "_unresolved"} _obj_client = "builder_client" _obj_struct = "tns5:EnumCustomFieldType"