Add TransformationRequest toString method

PiperOrigin-RevId: 536727079
(cherry picked from commit 108000834b)
This commit is contained in:
kimvde 2023-05-31 15:54:09 +00:00 committed by Tofunmi Adigun-Hameed
parent 89c5e16d2f
commit 55a2e7ff9e

View file

@ -310,6 +310,22 @@ public final class TransformationRequest {
return result;
}
@Override
public String toString() {
return "TransformationRequest{"
+ "outputHeight="
+ outputHeight
+ ", audioMimeType='"
+ audioMimeType
+ '\''
+ ", videoMimeType='"
+ videoMimeType
+ '\''
+ ", hdrMode="
+ hdrMode
+ '}';
}
/**
* Returns a new {@link TransformationRequest.Builder} initialized with the values of this
* instance.