Add TransformationRequest toString method

PiperOrigin-RevId: 536727079
This commit is contained in:
kimvde 2023-05-31 15:54:09 +00:00 committed by Tofunmi Adigun-Hameed
parent 0ddc024c69
commit 108000834b

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.