Box.V2.Managers.BoxSharedItemsManager.BoxSharedItemsManager C# (CSharp) Method

BoxSharedItemsManager() public method

Initializes a new instance of the BoxSharedItemsManager class.
public BoxSharedItemsManager ( IBoxConfig config, IBoxService service, IBoxConverter converter, IAuthRepository auth, string asUser = null, bool suppressNotifications = null ) : Box.V2.Auth
config IBoxConfig The config object to use
service IBoxService The Box service object
converter IBoxConverter The box converter object to use
auth IAuthRepository The auth repository object to use
asUser string The user ID to set as the 'As-User' header parameter; used to make calls in the context of a user using an admin token
suppressNotifications bool Whether or not to suppress both email and webhook notifications. Typically used for administrative API calls. Your application must have “Manage an Enterprise” scope, and the user making the API calls is a co-admin with the correct "Edit settings for your company" permission.
return Box.V2.Auth
        public BoxSharedItemsManager(IBoxConfig config, IBoxService service, IBoxConverter converter, IAuthRepository auth, string asUser = null, bool? suppressNotifications = null)
            : base(config, service, converter, auth, asUser, suppressNotifications) { }