ProjectsAgentsModelFactory.SkillVersion Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A specific version of a skill.
public static Azure.AI.Projects.Agents.SkillVersion SkillVersion(string id = default, string skillId = default, string name = default, string version = default, string description = default, DateTimeOffset createdAt = default);
static member SkillVersion : string * string * string * string * string * DateTimeOffset -> Azure.AI.Projects.Agents.SkillVersion
Public Shared Function SkillVersion (Optional id As String = Nothing, Optional skillId As String = Nothing, Optional name As String = Nothing, Optional version As String = Nothing, Optional description As String = Nothing, Optional createdAt As DateTimeOffset = Nothing) As SkillVersion
Parameters
- id
- String
The unique identifier of the skill version.
- skillId
- String
The identifier of the parent skill.
- name
- String
The name of the skill version.
- version
- String
The version identifier. Skill versions are immutable.
- description
- String
A human-readable description of the skill version.
- createdAt
- DateTimeOffset
The Unix timestamp (seconds) when the skill version was created.
Returns
A new SkillVersion instance for mocking.