Class IntegrationPolicyChangedDetails

java.lang.Object
com.dropbox.core.v2.teamlog.IntegrationPolicyChangedDetails

public class IntegrationPolicyChangedDetails extends Object
Changed integration policy for team.
  • Field Details

    • integrationName

      @Nonnull protected final String integrationName
    • newValue

      @Nonnull protected final IntegrationPolicy newValue
    • previousValue

      @Nonnull protected final IntegrationPolicy previousValue
  • Constructor Details

    • IntegrationPolicyChangedDetails

      public IntegrationPolicyChangedDetails(@Nonnull String integrationName, @Nonnull IntegrationPolicy newValue, @Nonnull IntegrationPolicy previousValue)
      Changed integration policy for team.
      Parameters:
      integrationName - Name of the third-party integration. Must not be null.
      newValue - New integration policy. Must not be null.
      previousValue - Previous integration policy. Must not be null.
      Throws:
      IllegalArgumentException - If any argument does not meet its preconditions.
  • Method Details

    • getIntegrationName

      @Nonnull public String getIntegrationName()
      Name of the third-party integration.
      Returns:
      value for this field, never null.
    • getNewValue

      @Nonnull public IntegrationPolicy getNewValue()
      New integration policy.
      Returns:
      value for this field, never null.
    • getPreviousValue

      @Nonnull public IntegrationPolicy getPreviousValue()
      Previous integration policy.
      Returns:
      value for this field, never null.
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • toStringMultiline

      public String toStringMultiline()
      Returns a String representation of this object formatted for easier readability.

      The returned String may contain newlines.

      Returns:
      Formatted, multiline String representation of this object