Smartsheet.Api.Models.Share.CreateShareBuilder.SetGroupId C# (CSharp) Method

SetGroupId() public method

the group share recipient’s group ID. NOTE: One of email or groupId must be specified, but not both.
public SetGroupId ( long groupId ) : CreateShareBuilder
groupId long the groupId
return CreateShareBuilder
            public virtual CreateShareBuilder SetGroupId(long? groupId)
            {
                this.groupId = groupId;
                return this;
            }