The Group data type contains information about a group.

This data type is used as a response element in the following actions:

  • CreateGroup
  • GetGroup
  • ListGroups
        public string Identify(Group group)
        {
            if (null == group)
            {
                throw new ArgumentNullException(AnchoringByIdentifierBehavior.ArgumentNameGroup);
            }

            return group.GroupId;
        }
Example #2
0
 public GetGroupResult WithGroup(Group group)
 {
     this.group = group;
     return this;
 }
 /// <summary>
 /// Sets the Group property
 /// </summary>
 /// <param name="group">The value to set for the Group property </param>
 /// <returns>this instance</returns>
 public CreateGroupResult WithGroup(Group group)
 {
     this.group = group;
     return this;
 }