Class ImmutableTeamUpdate

  • All Implemented Interfaces:
    TeamUpdate

    @ParametersAreNonnullByDefault
    @Generated("org.immutables.processor.ProxyProcessor")
    @Immutable
    @CheckReturnValue
    public final class ImmutableTeamUpdate
    extends Object
    implements TeamUpdate
    Immutable implementation of TeamUpdate.

    Use the builder to create immutable instances: ImmutableTeamUpdate.builder().

    • Method Detail

      • name

        @Nullable
        public String name()
        The name of the team.
        Specified by:
        name in interface TeamUpdate
      • privacy

        public Optional<String> privacy()
        The level of privacy this team should have. For a non-nested team: secret - only visible to organization owners and members of this team. closed - visible to all members of this organization. Default: secret For a parent or child team: closed - visible to all members of this organization. Default for child team: closed Can be one of: secret, closed
        Specified by:
        privacy in interface TeamUpdate
      • notificationSetting

        public Optional<String> notificationSetting()
        The notification setting the team has chosen. The options are: notifications_enabled - team members receive notifications when the team is @mentioned. notifications_disabled - no one receives notifications. Default: notifications_enabled Can be one of: notifications_enabled, notifications_disabled
        Specified by:
        notificationSetting in interface TeamUpdate
      • withName

        public final ImmutableTeamUpdate withName​(@Nullable
                                                  String value)
        Copy the current immutable object by setting a value for the name attribute. An equals check used to prevent copying of the same value by returning this.
        Parameters:
        value - A new value for name (can be null)
        Returns:
        A modified copy of the this object
      • withDescription

        public final ImmutableTeamUpdate withDescription​(String value)
        Copy the current immutable object by setting a present value for the optional description attribute.
        Parameters:
        value - The value for description
        Returns:
        A modified copy of this object
      • withDescription

        public final ImmutableTeamUpdate withDescription​(Optional<String> optional)
        Copy the current immutable object by setting an optional value for the description attribute. An equality check is used on inner nullable value to prevent copying of the same value by returning this.
        Parameters:
        optional - A value for description
        Returns:
        A modified copy of this object
      • withPrivacy

        public final ImmutableTeamUpdate withPrivacy​(String value)
        Copy the current immutable object by setting a present value for the optional privacy attribute.
        Parameters:
        value - The value for privacy
        Returns:
        A modified copy of this object
      • withPrivacy

        public final ImmutableTeamUpdate withPrivacy​(Optional<String> optional)
        Copy the current immutable object by setting an optional value for the privacy attribute. An equality check is used on inner nullable value to prevent copying of the same value by returning this.
        Parameters:
        optional - A value for privacy
        Returns:
        A modified copy of this object
      • withNotificationSetting

        public final ImmutableTeamUpdate withNotificationSetting​(String value)
        Copy the current immutable object by setting a present value for the optional notificationSetting attribute.
        Parameters:
        value - The value for notificationSetting
        Returns:
        A modified copy of this object
      • withNotificationSetting

        public final ImmutableTeamUpdate withNotificationSetting​(Optional<String> optional)
        Copy the current immutable object by setting an optional value for the notificationSetting attribute. An equality check is used on inner nullable value to prevent copying of the same value by returning this.
        Parameters:
        optional - A value for notificationSetting
        Returns:
        A modified copy of this object
      • withParentTeamId

        public final ImmutableTeamUpdate withParentTeamId​(int value)
        Copy the current immutable object by setting a present value for the optional parentTeamId attribute.
        Parameters:
        value - The value for parentTeamId
        Returns:
        A modified copy of this object
      • withParentTeamId

        public final ImmutableTeamUpdate withParentTeamId​(Optional<Integer> optional)
        Copy the current immutable object by setting an optional value for the parentTeamId attribute. An equality check is used on inner nullable value to prevent copying of the same value by returning this.
        Parameters:
        optional - A value for parentTeamId
        Returns:
        A modified copy of this object
      • equals

        public boolean equals​(@Nullable
                              Object another)
        This instance is equal to all instances of ImmutableTeamUpdate that have equal attribute values.
        Overrides:
        equals in class Object
        Returns:
        true if this is equal to another instance
      • hashCode

        public int hashCode()
        Computes a hash code from attributes: name, description, privacy, notificationSetting, parentTeamId.
        Overrides:
        hashCode in class Object
        Returns:
        hashCode value
      • toString

        public String toString()
        Prints the immutable value TeamUpdate with attribute values.
        Overrides:
        toString in class Object
        Returns:
        A string representation of the value
      • copyOf

        public static ImmutableTeamUpdate copyOf​(TeamUpdate instance)
        Creates an immutable copy of a TeamUpdate value. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.
        Parameters:
        instance - The instance to copy
        Returns:
        A copied immutable TeamUpdate instance