@@ -30,23 +30,31 @@ def __init__(
3030 folder : Optional [int ] = None ,
3131 file : Optional [int ] = None ,
3232 file_version : Optional [int ] = None ,
33+ ownership : Optional [int ] = None ,
34+ interactions : Optional [int ] = None ,
3335 ** kwargs
3436 ):
3537 """
36- :param user: The number of users this policy is applied to., defaults to None
38+ :param user: The number of users this policy is applied to with the `access` type assignment ., defaults to None
3739 :type user: Optional[int], optional
3840 :param folder: The number of folders this policy is applied to., defaults to None
3941 :type folder: Optional[int], optional
4042 :param file: The number of files this policy is applied to., defaults to None
4143 :type file: Optional[int], optional
4244 :param file_version: The number of file versions this policy is applied to., defaults to None
4345 :type file_version: Optional[int], optional
46+ :param ownership: The number of users this policy is applied to with the `ownership` type assignment., defaults to None
47+ :type ownership: Optional[int], optional
48+ :param interactions: The number of users this policy is applied to with the `interactions` type assignment., defaults to None
49+ :type interactions: Optional[int], optional
4450 """
4551 super ().__init__ (** kwargs )
4652 self .user = user
4753 self .folder = folder
4854 self .file = file
4955 self .file_version = file_version
56+ self .ownership = ownership
57+ self .interactions = interactions
5058
5159
5260class LegalHoldPolicy (LegalHoldPolicyMini ):
@@ -84,7 +92,7 @@ def __init__(
8492 of being released.
8593 * 'released' - the policy is no longer active., defaults to None
8694 :type status: Optional[LegalHoldPolicyStatusField], optional
87- :param assignment_counts: Counts of assignments within this a legal hold policy by item type., defaults to None
95+ :param assignment_counts: Counts of assignments within a legal hold policy by item type., defaults to None
8896 :type assignment_counts: Optional[LegalHoldPolicyAssignmentCountsField], optional
8997 :param created_at: When the legal hold policy object was created., defaults to None
9098 :type created_at: Optional[DateTime], optional
0 commit comments