Source code for pylero.custom_field_type

# -*- coding: utf8 -*-
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals

from pylero.base_polarion import BasePolarion


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