Commit f07e5c50 by kimvde Committed by Tofunmi Adigun-Hameed

Add TransformationRequest toString method

PiperOrigin-RevId: 536727079
(cherry picked from commit a8baf21cae4c47de0bdcb8e3f9474d4914662d36)
parent 67ec32c4
...@@ -308,6 +308,22 @@ public final class TransformationRequest { ...@@ -308,6 +308,22 @@ public final class TransformationRequest {
return result; 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 * Returns a new {@link TransformationRequest.Builder} initialized with the values of this
* instance. * instance.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment