diff --git a/java/google/registry/beam/BillingEvent.java b/java/google/registry/beam/BillingEvent.java index 4f728d8b8..8bcf5d836 100644 --- a/java/google/registry/beam/BillingEvent.java +++ b/java/google/registry/beam/BillingEvent.java @@ -37,10 +37,10 @@ import org.apache.beam.sdk.io.gcp.bigquery.SchemaAndRecord; /** * A POJO representing a single billable event, parsed from a {@code SchemaAndRecord}. * - *

This is a trivially serializable class that allows Beam to transform the results of a - * Bigquery query into a standard Java representation, giving us the type guarantees and ease of - * manipulation Bigquery lacks, while localizing any Bigquery-side failures to the - * {@link #parseFromRecord} function. + *

This is a trivially serializable class that allows Beam to transform the results of a Bigquery + * query into a standard Java representation, giving us the type guarantees and ease of manipulation + * Bigquery lacks, while localizing any Bigquery-side failures to the {@link #parseFromRecord} + * function. */ @AutoValue public abstract class BillingEvent implements Serializable { @@ -50,6 +50,7 @@ public abstract class BillingEvent implements Serializable { private static final DateTimeFormatter DATE_TIME_FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss zzz"); + private static final ImmutableList FIELD_NAMES = ImmutableList.of( "id",