Skip to content

Commit

Permalink
Change type of exchange_workflow field in RecurringExchange.
Browse files Browse the repository at this point in the history
This resource type is not used by any service so this is a safe change.
  • Loading branch information
SanjayVas committed Oct 16, 2023
1 parent 8b30f27 commit b8d2bbb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ message ExchangeStep {
(google.api.field_behavior) = IMMUTABLE
];

// Current index of the step inside the serialized_exchange_workflow.
// Current index of the step inside `exchange_workflow`.
int32 step_index = 5 [
(google.api.field_behavior) = REQUIRED,
(google.api.field_behavior) = IMMUTABLE
Expand All @@ -68,9 +68,9 @@ message ExchangeStep {
];
}

// Serialized denormalized `exchange_workflow` field from the ancestor
// Denormalized `exchange_workflow` field from the ancestor
// `RecurringExchange`.
bytes serialized_exchange_workflow = 3 [
bytes exchange_workflow = 3 [
(google.api.field_behavior) = OUTPUT_ONLY,
(google.api.field_behavior) = IMMUTABLE
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ message RecurringExchange {
// Resource name.
string name = 1;

// The ExchangeWorkflow for this recurring exchange.
ExchangeWorkflow exchange_workflow = 2 [
// Serialized `ExchangeWorkflow` for this `RecurringExchange`.
bytes exchange_workflow = 2 [
(google.api.field_behavior) = REQUIRED,
(google.api.field_behavior) = IMMUTABLE
];
Expand Down

0 comments on commit b8d2bbb

Please sign in to comment.