/// <summary> /// Initializes a new instance of the <see cref="YammerGroupServiceSettings" /> class. /// </summary> /// <param name="networkId">networkId.</param> /// <param name="allowCreate">allowCreate.</param> /// <param name="allowReuseExisting">allowReuseExisting.</param> /// <param name="enabled">enabled.</param> /// <param name="createNewGroupAssignBy">createNewGroupAssignBy.</param> /// <param name="nameOrId">nameOrId.</param> /// <param name="description">description.</param> /// <param name="type">type.</param> /// <param name="joinType">joinType.</param> /// <param name="isListInDirectory">isListInDirectory.</param> /// <param name="isGroupAlreadyExisted">isGroupAlreadyExisted.</param> public YammerGroupServiceSettings(string networkId = default(string), bool allowCreate = default(bool), bool allowReuseExisting = default(bool), bool enabled = default(bool), AssignBy createNewGroupAssignBy = default(AssignBy), string nameOrId = default(string), string description = default(string), YammerGroupType type = default(YammerGroupType), YammerGroupJoinType joinType = default(YammerGroupJoinType), bool isListInDirectory = default(bool), bool isGroupAlreadyExisted = default(bool)) { this.NetworkId = networkId; this.NameOrId = nameOrId; this.Description = description; this.NetworkId = networkId; this.AllowCreate = allowCreate; this.AllowReuseExisting = allowReuseExisting; this.Enabled = enabled; this.CreateNewGroupAssignBy = createNewGroupAssignBy; this.NameOrId = nameOrId; this.Description = description; this.Type = type; this.JoinType = joinType; this.IsListInDirectory = isListInDirectory; this.IsGroupAlreadyExisted = isGroupAlreadyExisted; }
/// <summary> /// Initializes a new instance of the <see cref="YammerGroupRequestSettings" /> class. /// </summary> /// <param name="nameOrId">nameOrId.</param> /// <param name="description">description.</param> /// <param name="type">type.</param> /// <param name="joinType">joinType.</param> /// <param name="isListInDirectory">isListInDirectory.</param> /// <param name="isGroupAlreadyExisted">isGroupAlreadyExisted.</param> public YammerGroupRequestSettings(string nameOrId = default(string), string description = default(string), YammerGroupType type = default(YammerGroupType), YammerGroupJoinType joinType = default(YammerGroupJoinType), bool isListInDirectory = default(bool), bool isGroupAlreadyExisted = default(bool)) { this.NameOrId = nameOrId; this.Description = description; this.Type = type; this.JoinType = joinType; this.IsListInDirectory = isListInDirectory; this.IsGroupAlreadyExisted = isGroupAlreadyExisted; }