diff --git a/BitwardenShared/Core/Vault/Models/Response/Fixtures/ProfileOrganizationResponseModel+Fixtures.swift b/BitwardenShared/Core/Vault/Models/Response/Fixtures/ProfileOrganizationResponseModel+Fixtures.swift index 5c9fdc05b..9f63f028a 100644 --- a/BitwardenShared/Core/Vault/Models/Response/Fixtures/ProfileOrganizationResponseModel+Fixtures.swift +++ b/BitwardenShared/Core/Vault/Models/Response/Fixtures/ProfileOrganizationResponseModel+Fixtures.swift @@ -4,7 +4,6 @@ import Foundation extension ProfileOrganizationResponseModel { static func fixture( - accessSecretsManager: Bool = false, enabled: Bool = true, familySponsorshipAvailable: Bool = false, familySponsorshipFriendlyName: String? = nil, @@ -49,7 +48,6 @@ extension ProfileOrganizationResponseModel { usersGetPremium: Bool = false ) -> ProfileOrganizationResponseModel { self.init( - accessSecretsManager: accessSecretsManager, enabled: enabled, familySponsorshipAvailable: familySponsorshipAvailable, familySponsorshipFriendlyName: familySponsorshipFriendlyName, diff --git a/BitwardenShared/Core/Vault/Models/Response/ProfileOrganizationResponseModel.swift b/BitwardenShared/Core/Vault/Models/Response/ProfileOrganizationResponseModel.swift index d45ed912e..d52d2c188 100644 --- a/BitwardenShared/Core/Vault/Models/Response/ProfileOrganizationResponseModel.swift +++ b/BitwardenShared/Core/Vault/Models/Response/ProfileOrganizationResponseModel.swift @@ -5,9 +5,6 @@ import Foundation struct ProfileOrganizationResponseModel: Codable, Equatable { // MARK: Properties - /// Whether the user can access secrets manager. - let accessSecretsManager: Bool - /// Whether the profile organization is enabled. let enabled: Bool