A value that represents the type of access granted to the target Group for all child cases. The possible values are:
None
Read
Edit
ContactAccessLevel
Type
picklist
Properties
Filter, Group, Restricted picklist, Sort
Description
A value that represents the type of access granted to the target Group, UserRole, or User for any associated contacts. The possible values are:
None
Read
Edit
DeveloperName
Type
string
Properties
Create, Defaulted on create, Filter, Group, Sort, Update
Description
The unique name of the object
in the API. This name can contain only
underscores and alphanumeric characters, and must be unique in your
organization. It must begin with a letter, not include spaces, not
end with an underscore, and not contain two consecutive underscores. In managed packages, this field prevents naming
conflicts on package installations. With this field, a developer can
change the object’s name in a managed package and the changes
are reflected in a subscriber’s organization.Corresponds to Rule Name in the user interface.
This field is available
in API version 24.0 and later.
GroupId
Type
reference
Properties
Create, Filter, Group, Sort
Description
The ID representing the source group. An Account owned by a User in the source Group triggers the rule to give access.
A value that represents the type of access granted to the target Group for any associated Opportunity. The possible values are:
None
Read
Edit
Name
Type
string
Properties
Create, Filter, Group, Sort, Update
Description
Label of the sharing rule as it appears in the user interface.
Limited to 80 characters. Corresponds to Label on the user interface.
UserOrGroupId
Type
reference
Properties
Create, Filter, Group, Sort
Description
The ID representing the User or Group being granted access.
Usage
Use this object to manage the sharing
rules for accounts. General sharing and territory management-related
sharing use this object. For example, the following code creates an
account owner sharing rule between two public groups, which can also
contain portal users.
AccountOwnerSharingRule rule = new AccountOwnerSharingRule();
rule.setName("RuleName"); // Set the sharing rule name
rule.setDeveloperName("RuleDeveloperName"); // Set the sharing rule developer name
rule.setGroupId("00Gx00000000000"); // Set the group of users to share records from
rule.setUserOrGroupId("00Gx00000000001"); // Set the group of users to share records to
rule.setAccountAccessLevel("Edit");
rule.setOpportunityAccessLevel("Read");
rule.setCaseAccessLevel("None");
connection.create(rule);