Skip to content

Commit

Permalink
Added two new programme types
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKevJoy committed Jul 22, 2024
1 parent 70d2b82 commit 73d7385
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,13 @@ public enum IttProgrammeType
InternationalQualifiedTeacherStatus = 389040023,

[Description("High potential ITT")]
HighPotentialITT = 389040024
HighPotentialITT = 389040024,

[Description("Primary and secondary undergraduate fee funded")]
Primaryandsecondaryundergraduatefeefunded = 389040025,

[Description("Primary and secondary postgraduate fee funded")]
Primaryandsecondarypostgraduatefeefunded = 389040026
}

public static class IttProgrammeTypeExtensions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2056,6 +2056,14 @@ public enum dfeta_ITTProgrammeType
[OptionSetMetadataAttribute("Overseas Trained Teacher Programme", 8)]
OverseasTrainedTeacherProgramme = 389040007,

[System.Runtime.Serialization.EnumMemberAttribute()]
[OptionSetMetadataAttribute("Primary and secondary postgraduate fee funded", 26, "#0000ff")]
Primaryandsecondarypostgraduatefeefunded = 389040026,

[System.Runtime.Serialization.EnumMemberAttribute()]
[OptionSetMetadataAttribute("Primary and secondary undergraduate fee funded", 25, "#0000ff")]
Primaryandsecondaryundergraduatefeefunded = 389040025,

[System.Runtime.Serialization.EnumMemberAttribute()]
[OptionSetMetadataAttribute("Provider-led (postgrad)", 21, "#0000ff")]
Providerled_postgrad = 389040021,
Expand Down Expand Up @@ -3177,6 +3185,19 @@ public enum SdkMessageProcessingStepImage_ImageType
PreImage = 0,
}

[System.Runtime.Serialization.DataContractAttribute()]
public enum securityrole_IsAutoAssigned
{

[System.Runtime.Serialization.EnumMemberAttribute()]
[OptionSetMetadataAttribute("No", 0)]
No = 0,

[System.Runtime.Serialization.EnumMemberAttribute()]
[OptionSetMetadataAttribute("Yes", 1)]
Yes = 1,
}

[System.Runtime.Serialization.DataContractAttribute()]
public enum ServiceStage
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -800,6 +800,8 @@ public async Task Given_asessmentonlyroute_programmetype_then_intraining_outcome
[InlineData(IttProgrammeType.UndergraduateOptIn)]
[InlineData(IttProgrammeType.LicensedTeacherProgramme)]
[InlineData(IttProgrammeType.ProviderLedPostgrad)]
[InlineData(IttProgrammeType.Primaryandsecondarypostgraduatefeefunded)]
[InlineData(IttProgrammeType.Primaryandsecondaryundergraduatefeefunded)]
public async Task Given_non_asessmentonlyroute_programmetypes_then_underassessment_outcome_is_not_permitted(IttProgrammeType programmeType)
{
// Arrange
Expand Down

0 comments on commit 73d7385

Please sign in to comment.