From aa959f8868b6fc84e611d031155425939b41bcc5 Mon Sep 17 00:00:00 2001 From: Sandro Meireles <49874732+Sandro-Meireles@users.noreply.github.com> Date: Mon, 13 Sep 2021 10:27:49 -0300 Subject: [PATCH] fix: Adjust type of BillingRequest.before and BillingRequest.after (#30) --- src/weni/protobuf/flows/billing.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/weni/protobuf/flows/billing.proto b/src/weni/protobuf/flows/billing.proto index 068265f..69456cc 100644 --- a/src/weni/protobuf/flows/billing.proto +++ b/src/weni/protobuf/flows/billing.proto @@ -12,8 +12,8 @@ service Billing { message BillingRequest { string org_uuid = 1; - google.protobuf.Timestamp before = 2; - google.protobuf.Timestamp after = 3; + string before = 2; + string after = 3; } message BillingResponse {