Skip to content

feat(deps-dev): bump @seamapi/types from 1.375.0 to 1.377.0 in the seam group #164

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions output/csharp/src/Seam/Model/AcsSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ protected AcsSystem() { }
public AcsSystem(
float? acsAccessGroupCount = default,
string acsSystemId = default,
float? acsUsersCount = default,
float? acsUserCount = default,
bool? canAddAcsUsersToAcsAccessGroups = default,
bool? canAutomateEnrollment = default,
bool? canCreateAcsAccessGroups = default,
Expand All @@ -43,7 +43,7 @@ public AcsSystem(
{
AcsAccessGroupCount = acsAccessGroupCount;
AcsSystemId = acsSystemId;
AcsUsersCount = acsUsersCount;
AcsUserCount = acsUserCount;
CanAddAcsUsersToAcsAccessGroups = canAddAcsUsersToAcsAccessGroups;
CanAutomateEnrollment = canAutomateEnrollment;
CanCreateAcsAccessGroups = canCreateAcsAccessGroups;
Expand Down Expand Up @@ -656,8 +656,8 @@ public override string ToString()
[DataMember(Name = "acs_system_id", IsRequired = true, EmitDefaultValue = false)]
public string AcsSystemId { get; set; }

[DataMember(Name = "acs_users_count", IsRequired = false, EmitDefaultValue = false)]
public float? AcsUsersCount { get; set; }
[DataMember(Name = "acs_user_count", IsRequired = false, EmitDefaultValue = false)]
public float? AcsUserCount { get; set; }

[DataMember(
Name = "can_add_acs_users_to_acs_access_groups",
Expand Down
Loading
Loading