livebook/proto/lib/livebook_proto/billing_status.pb.ex
2025-04-07 22:12:21 -03:00

16 lines
509 B
Elixir

defmodule LivebookProto.BillingStatus do
use Protobuf, protoc_gen_elixir_version: "0.14.1", syntax: :proto3
oneof :type, 0
field :disabled, 1, type: :bool
field :trialing, 2, type: LivebookProto.BillingStatusTrialing, oneof: 0
field :trial_ended, 3,
type: LivebookProto.BillingStatusTrialEnded,
json_name: "trialEnded",
oneof: 0
field :canceling, 4, type: LivebookProto.BillingStatusCanceling, oneof: 0
field :canceled, 5, type: LivebookProto.BillingStatusCanceled, oneof: 0
end