Apex
...
Input & Output Types
Types.UpdateLinkSettingsInput
this custom apex type represents the input for the update link settings docid\ dpqwqyyt6mpmxyjx8a rv method global class updatelinksettingsinput { public string id; public boolean isactive; public boolean allowdownloading; public boolean requirepassword; public string password; public list\<string> allowedemails; public list\<string> alloweddomains; global updatelinksettingsinput(string id) { this id = id; } } class params/properties id input the cloudfiles link id whose settings are to be updated isactive set value to 'false' to disable the cloudfiles link allowdownloading set value to 'true' to allow downloading requirepassword set value to 'true' if you wish to use to protect the cloudfiles link password enter the password you wish to use to protect the cloudfiles link allowedemails input a list of email ids you wish to grant access to the link alloweddomains input a list of domains you wish to grant access to the link