Class Audits.GetEncodedResponseResponse

  • Enclosing class:
    Audits

    public static class Audits.GetEncodedResponseResponse
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      GetEncodedResponseResponse​(java.util.Optional<java.lang.String> body, java.lang.Integer originalSize, java.lang.Integer encodedSize)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Optional<java.lang.String> getBody()
      The encoded body as a base64 string.
      java.lang.Integer getEncodedSize()
      Size after re-encoding.
      java.lang.Integer getOriginalSize()
      Size before re-encoding.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • GetEncodedResponseResponse

        public GetEncodedResponseResponse​(java.util.Optional<java.lang.String> body,
                                          java.lang.Integer originalSize,
                                          java.lang.Integer encodedSize)
    • Method Detail

      • getBody

        public java.util.Optional<java.lang.String> getBody()
        The encoded body as a base64 string. Omitted if sizeOnly is true.
      • getOriginalSize

        public java.lang.Integer getOriginalSize()
        Size before re-encoding.
      • getEncodedSize

        public java.lang.Integer getEncodedSize()
        Size after re-encoding.