Class LegalHoldsExportDownloadedDetails

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

public class LegalHoldsExportDownloadedDetails extends Object
Downloaded export for a hold.
  • Field Details

    • legalHoldId

      @Nonnull protected final String legalHoldId
    • name

      @Nonnull protected final String name
    • exportName

      @Nonnull protected final String exportName
    • part

      @Nullable protected final String part
    • fileName

      @Nullable protected final String fileName
  • Constructor Details

    • LegalHoldsExportDownloadedDetails

      public LegalHoldsExportDownloadedDetails(@Nonnull String legalHoldId, @Nonnull String name, @Nonnull String exportName, @Nullable String part, @Nullable String fileName)
      Downloaded export for a hold.

      Use newBuilder(java.lang.String,java.lang.String,java.lang.String) to create instances of this class without specifying values for all optional fields.

      Parameters:
      legalHoldId - Hold ID. Must not be null.
      name - Hold name. Must not be null.
      exportName - Export name. Must not be null.
      part - Part.
      fileName - Filename.
      Throws:
      IllegalArgumentException - If any argument does not meet its preconditions.
    • LegalHoldsExportDownloadedDetails

      public LegalHoldsExportDownloadedDetails(@Nonnull String legalHoldId, @Nonnull String name, @Nonnull String exportName)
      Downloaded export for a hold.

      The default values for unset fields will be used.

      Parameters:
      legalHoldId - Hold ID. Must not be null.
      name - Hold name. Must not be null.
      exportName - Export name. Must not be null.
      Throws:
      IllegalArgumentException - If any argument does not meet its preconditions.
  • Method Details

    • getLegalHoldId

      @Nonnull public String getLegalHoldId()
      Hold ID.
      Returns:
      value for this field, never null.
    • getName

      @Nonnull public String getName()
      Hold name.
      Returns:
      value for this field, never null.
    • getExportName

      @Nonnull public String getExportName()
      Export name.
      Returns:
      value for this field, never null.
    • getPart

      @Nullable public String getPart()
      Part.
      Returns:
      value for this field, or null if not present.
    • getFileName

      @Nullable public String getFileName()
      Filename.
      Returns:
      value for this field, or null if not present.
    • newBuilder

      public static LegalHoldsExportDownloadedDetails.Builder newBuilder(String legalHoldId, String name, String exportName)
      Returns a new builder for creating an instance of this class.
      Parameters:
      legalHoldId - Hold ID. Must not be null.
      name - Hold name. Must not be null.
      exportName - Export name. Must not be null.
      Returns:
      builder for this class.
      Throws:
      IllegalArgumentException - If any argument does not meet its preconditions.
    • 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