Overview
This structure contains the complete set of information about a skill group. The structure is used both to retrieve detailed skill group information and to pass information about a skill group back to the server to get updated.
Format
Panel | ||
---|---|---|
| ||
|
Elements
Element | Data Type | Required? | Description |
---|---|---|---|
SkillGroupId | Int32 | No | The skill group Id is a unique identifier for a skill group. For internal use only. |
SkillGroupName | String | Insert: Yes Update: Either SkillGroupName or SkillGroupUid is required. | A unique identifier for a skill group. |
SkillGroupUid | Int64 | Insert: No Update: Either SkillGroupName or SkillGroupUid is required. | A unique and immutable identifier for a skill group. The UID will be generated automatically upon creation of a new skill. |
NewSkillGroupName | String | No | In order to update the name of an existing skill group, specify the new skill group name here. |
SortOrder | Int16 | No | The sort order of the skill group on the list (1-based). |
Usage Example(s)
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<req:Skill> <b:SkillGroupDetail> <!--Optional:--> <com:SkillGroupIdentity><b:SkillGroupId i:nil="true"/> <com<b:SkillGroupName>Technology<SkillGroupName>Quality Assurance2</comb:SkillGroupName> </com:SkillGroupIdentity> <com:SkillName>HTML</com:SkillName> <b:SkillGroupUid>1152921504606857998</b:SkillGroupUid> <com:InactiveFlag>0</com:InactiveFlag> <!--Optional:--> <com:NewSkillName>HTML2</com:NewSkillName> <b:NewSkillGroupName i:nil="true"/> <!--Optional:--> <com:SortOrder>3</com:SortOrder><b:SortOrder>1</b:SortOrder> </reqb:Skill>SkillGroupDetail> |