From 9525c4fed803f8794b02c4cfb9387c60189e2638 Mon Sep 17 00:00:00 2001 From: forcodedancing Date: Fri, 19 Jan 2024 18:09:53 +0800 Subject: [PATCH 1/3] feat: add settlement events --- e2e/tests/virtualgroup_test.go | 59 +- proto/greenfield/virtualgroup/events.proto | 30 + swagger/static/swagger.yaml | 1185 ++++++-------------- x/virtualgroup/keeper/payment.go | 25 + x/virtualgroup/types/events.pb.go | 786 ++++++++++++- 5 files changed, 1190 insertions(+), 895 deletions(-) diff --git a/e2e/tests/virtualgroup_test.go b/e2e/tests/virtualgroup_test.go index 3647bbe7b..d08be5f43 100644 --- a/e2e/tests/virtualgroup_test.go +++ b/e2e/tests/virtualgroup_test.go @@ -7,6 +7,7 @@ import ( "math" "reflect" "strconv" + "strings" "testing" "time" @@ -287,7 +288,7 @@ func (s *VirtualGroupTestSuite) TestSettle() { StorageProvider: user.GetAddr().String(), GlobalVirtualGroupFamilyId: gvgFamily.Id, } - s.SendTxBlock(user, &msgSettle) + txResp1 := s.SendTxBlock(user, &msgSettle) primaryBalanceAfter, err := s.Client.BankQueryClient.Balance(context.Background(), &types2.QueryBalanceRequest{ Denom: s.Config.Denom, Address: primarySp.FundingKey.GetAddr().String(), @@ -297,13 +298,18 @@ func (s *VirtualGroupTestSuite) TestSettle() { s.T().Logf("primaryBalance: %s, after: %s", primaryBalance.String(), primaryBalanceAfter.String()) s.Require().True(primaryBalanceAfter.Balance.Amount.GT(primaryBalance.Balance.Amount)) + settleGVGFamilyEvent := filterSettleGVGFamilyEventFromTx(txResp1) + s.Require().True(settleGVGFamilyEvent.Id == gvgFamilyId) + s.Require().True(settleGVGFamilyEvent.SpId == gvgFamily.PrimarySpId) + s.Require().True(settleGVGFamilyEvent.Amount.Equal(primaryBalanceAfter.Balance.Amount.Sub(primaryBalance.Balance.Amount))) + // settle gvg msgSettle = virtualgroupmoduletypes.MsgSettle{ StorageProvider: user.GetAddr().String(), GlobalVirtualGroupFamilyId: 0, GlobalVirtualGroupIds: []uint32{gvgId}, } - s.SendTxBlock(user, &msgSettle) + txResp2 := s.SendTxBlock(user, &msgSettle) secondaryBalancesAfter := make([]sdkmath.Int, 0, len(secondaryBalances)) for _, addr := range secondarySpAddrs { @@ -314,9 +320,12 @@ func (s *VirtualGroupTestSuite) TestSettle() { secondaryBalancesAfter = append(secondaryBalancesAfter, tempResp.Balance.Amount) } + settleGVGEvent := filterSettleGVGEventFromTx(txResp2) + s.Require().True(settleGVGEvent.Id == gvgId) for i := range secondaryBalances { s.T().Logf("secondaryBalance: %s, after: %s", secondaryBalances[i].String(), secondaryBalancesAfter[i].String()) s.Require().True(secondaryBalancesAfter[i].GT(secondaryBalances[i])) + s.Require().True(settleGVGEvent.Amount.Equal(secondaryBalancesAfter[i].Sub(secondaryBalances[i]))) } } @@ -1316,3 +1325,49 @@ func (s *VirtualGroupTestSuite) TestSPExit_SwapInfo_Expired() { _, err = s.Client.StorageProvider(context.Background(), &sptypes.QueryStorageProviderRequest{Id: spy.Info.Id}) s.Require().Error(err) } + +func filterSettleGVGEventFromTx(txRes *sdk.TxResponse) virtualgroupmoduletypes.EventSettleGlobalVirtualGroup { + idStr, amountStr := "", "" + for _, event := range txRes.Logs[0].Events { + if event.Type == "greenfield.challenge.EventSettleGlobalVirtualGroup" { + for _, attr := range event.Attributes { + if attr.Key == "id" { + idStr = strings.Trim(attr.Value, `"`) + } else if attr.Key == "amount" { + amountStr = strings.Trim(attr.Value, `"`) + } + } + } + } + id, _ := strconv.ParseInt(idStr, 10, 32) + amount := sdkmath.NewUintFromString(amountStr) + return virtualgroupmoduletypes.EventSettleGlobalVirtualGroup{ + Id: uint32(id), + Amount: sdkmath.NewInt(int64(amount.Uint64())), + } +} + +func filterSettleGVGFamilyEventFromTx(txRes *sdk.TxResponse) virtualgroupmoduletypes.EventSettleGlobalVirtualGroupFamily { + idStr, spIdStr, amountStr := "", "", "" + for _, event := range txRes.Logs[0].Events { + if event.Type == "greenfield.challenge.EventSettleGlobalVirtualGroupFamily" { + for _, attr := range event.Attributes { + if attr.Key == "id" { + idStr = strings.Trim(attr.Value, `"`) + } else if attr.Key == "sp_id" { + spIdStr = strings.Trim(attr.Value, `"`) + } else if attr.Key == "amount" { + amountStr = strings.Trim(attr.Value, `"`) + } + } + } + } + id, _ := strconv.ParseInt(idStr, 10, 32) + spId, _ := strconv.ParseInt(spIdStr, 10, 32) + amount := sdkmath.NewUintFromString(amountStr) + return virtualgroupmoduletypes.EventSettleGlobalVirtualGroupFamily{ + Id: uint32(id), + SpId: uint32(spId), + Amount: sdkmath.NewInt(int64(amount.Uint64())), + } +} diff --git a/proto/greenfield/virtualgroup/events.proto b/proto/greenfield/virtualgroup/events.proto index 5c3068d31..95a062dfe 100644 --- a/proto/greenfield/virtualgroup/events.proto +++ b/proto/greenfield/virtualgroup/events.proto @@ -218,3 +218,33 @@ message EventStorageProviderForcedExit { // The id of the storage provider who wants to exit uint32 storage_provider_id = 1; } + +message EventSettleGlobalVirtualGroupFamily { + // The id of global virtual group family, which is auto generated by blockchain + uint32 id = 1; + // The id of the primary sp who will receive the fund + uint32 sp_id = 2; + // The funding address of the sp + string sp_funding_address = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + // The amount the fund to send to sp + string amount = 4 [ + (cosmos_proto.scalar) = "cosmos.Int", + (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", + (gogoproto.nullable) = false + ]; +} + +message EventSettleGlobalVirtualGroup { + // The id of global virtual group, which is auto generated by blockchain + uint32 id = 1; + // The ids of the secondary sps who will receive the fund + repeated uint32 sp_ids = 2; + // The funding address of the sps + repeated string sp_funding_addresses = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + // The amount the fund to send to each sp + string amount = 4 [ + (cosmos_proto.scalar) = "cosmos.Int", + (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", + (gogoproto.nullable) = false + ]; +} diff --git a/swagger/static/swagger.yaml b/swagger/static/swagger.yaml index a694c0dc5..4e49e1254 100644 --- a/swagger/static/swagger.yaml +++ b/swagger/static/swagger.yaml @@ -6371,10 +6371,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no - widely used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty @@ -6424,7 +6421,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -6434,7 +6431,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -6464,7 +6461,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -6579,10 +6575,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -6632,7 +6625,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -6642,7 +6635,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -6672,7 +6665,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -6791,10 +6783,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -6844,7 +6833,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -6854,7 +6843,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -6884,7 +6873,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -7015,10 +7003,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -7068,7 +7053,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -7078,7 +7063,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -7108,7 +7093,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -7267,10 +7251,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -7320,7 +7301,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -7330,7 +7311,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -7360,7 +7341,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -7465,10 +7445,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -7518,7 +7495,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -7528,7 +7505,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -7558,7 +7535,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -7688,10 +7664,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -7741,7 +7714,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -7751,7 +7724,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -7781,7 +7754,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -7908,10 +7880,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -7961,7 +7930,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -7971,7 +7940,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -8001,7 +7970,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -8112,10 +8080,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -8165,7 +8130,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -8175,7 +8140,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -8205,7 +8170,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -8307,10 +8271,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -8360,7 +8321,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -8370,7 +8331,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -8400,7 +8361,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -8505,10 +8465,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -8558,7 +8515,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -8568,7 +8525,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -8598,7 +8555,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -8742,10 +8698,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -8795,7 +8748,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -8805,7 +8758,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -8835,7 +8788,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -8943,10 +8895,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no - widely used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty @@ -8996,7 +8945,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -9006,7 +8955,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -9036,7 +8985,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -9182,10 +9130,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -9235,7 +9180,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -9245,7 +9190,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -9275,7 +9220,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -9460,10 +9404,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no - widely used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty @@ -9513,7 +9454,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -9523,7 +9464,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -9553,7 +9494,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -9691,10 +9631,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -9744,7 +9681,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -9754,7 +9691,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -9784,7 +9721,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -9958,10 +9894,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no - widely used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty @@ -10011,7 +9944,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -10021,7 +9954,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -10051,7 +9984,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -10189,10 +10121,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -10242,7 +10171,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -10252,7 +10181,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -10282,7 +10211,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -11915,10 +11843,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -11968,7 +11893,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -11978,7 +11903,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -12008,7 +11933,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -13252,10 +13176,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -13305,7 +13226,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -13315,7 +13236,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -13345,7 +13266,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -14570,10 +14490,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -14623,7 +14540,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -14633,7 +14550,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -14663,7 +14580,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -14858,10 +14774,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -14911,7 +14824,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -14921,7 +14834,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -14951,7 +14864,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -15073,10 +14985,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -15126,7 +15035,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -15136,7 +15045,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -15166,7 +15075,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -15279,10 +15187,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no - widely used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty @@ -15332,7 +15237,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -15342,7 +15247,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -15372,7 +15277,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -15508,10 +15412,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -15561,7 +15462,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -15571,7 +15472,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -15601,7 +15502,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -15771,10 +15671,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no - widely used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty @@ -15824,7 +15721,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -15834,7 +15731,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -15864,7 +15761,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -16000,10 +15896,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -16053,7 +15946,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -16063,7 +15956,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -16093,7 +15986,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -17225,10 +17117,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -17278,7 +17167,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -17288,7 +17177,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -17318,7 +17207,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -17448,10 +17336,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -17501,7 +17386,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -17511,7 +17396,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -17541,7 +17426,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -17700,10 +17584,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -17753,7 +17634,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -17763,7 +17644,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -17793,7 +17674,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -17898,10 +17778,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -17951,7 +17828,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -17961,7 +17838,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -17991,7 +17868,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -18128,10 +18004,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no - widely used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty @@ -18218,10 +18091,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -18271,7 +18141,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -18281,7 +18151,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -18311,7 +18181,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -18447,10 +18316,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no - widely used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty @@ -18557,10 +18423,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -18610,7 +18473,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -18620,7 +18483,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -18650,7 +18513,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -18833,10 +18695,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no - widely used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty @@ -18946,10 +18805,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -18999,7 +18855,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -19009,7 +18865,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -19039,7 +18895,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -19604,10 +19459,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -19657,7 +19509,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -19667,7 +19519,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -19697,7 +19549,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -19821,10 +19672,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no - widely used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty @@ -19874,7 +19722,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -19884,7 +19732,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -19914,7 +19762,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -20147,10 +19994,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -20200,7 +20044,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -20210,7 +20054,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -20240,7 +20084,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -20445,10 +20288,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no - widely used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty @@ -20498,7 +20338,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -20508,7 +20348,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -20538,7 +20378,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -20748,10 +20587,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -20801,7 +20637,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -20811,7 +20647,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -20841,7 +20677,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -21026,10 +20861,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -21079,7 +20911,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -21089,7 +20921,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -21119,7 +20951,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -21339,10 +21170,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -21392,7 +21220,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -21402,7 +21230,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -21432,7 +21260,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -21584,10 +21411,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -21637,7 +21461,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -21647,7 +21471,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -21677,7 +21501,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -21872,10 +21695,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -21925,7 +21745,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -21935,7 +21755,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -21965,7 +21785,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -22194,10 +22013,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -22247,7 +22063,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -22257,7 +22073,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -22287,7 +22103,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -23102,10 +22917,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -23155,7 +22967,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -23165,7 +22977,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -23195,7 +23007,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -23540,10 +23351,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -23593,7 +23401,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -23603,7 +23411,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -23633,7 +23441,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -23918,10 +23725,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -23971,7 +23775,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -23981,7 +23785,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -24011,7 +23815,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -24193,10 +23996,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no - widely used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty @@ -24246,7 +24046,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -24256,7 +24056,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -24286,7 +24086,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -24579,10 +24378,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -24632,7 +24428,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -24642,7 +24438,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -24672,7 +24468,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -24847,10 +24642,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no - widely used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty @@ -24900,7 +24692,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -24910,7 +24702,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -24940,7 +24732,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -25210,10 +25001,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -25263,7 +25051,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -25273,7 +25061,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -25303,7 +25091,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -25508,10 +25295,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are - no widely used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty @@ -25562,7 +25346,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -25572,7 +25356,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -25602,7 +25386,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -25878,10 +25661,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -25931,7 +25711,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -25941,7 +25721,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -25971,7 +25751,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -26134,10 +25913,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -26187,7 +25963,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -26197,7 +25973,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -26227,7 +26003,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -26353,10 +26128,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -26406,7 +26178,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -26416,7 +26188,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -26446,7 +26218,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -26564,10 +26335,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no - widely used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty @@ -26617,7 +26385,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -26627,7 +26395,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -26657,7 +26425,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -26950,10 +26717,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -27003,7 +26767,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -27013,7 +26777,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -27043,7 +26807,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -27216,10 +26979,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no - widely used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty @@ -27269,7 +27029,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -27279,7 +27039,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -27309,7 +27069,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -27579,10 +27338,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -27632,7 +27388,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -27642,7 +27398,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -27672,7 +27428,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -27872,10 +27627,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -27925,7 +27677,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -27935,7 +27687,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -27965,7 +27717,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -28195,10 +27946,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -28248,7 +27996,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -28258,7 +28006,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -28288,7 +28036,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -28480,10 +28227,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -28533,7 +28277,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -28543,7 +28287,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -28573,7 +28317,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -28795,10 +28538,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -28848,7 +28588,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -28858,7 +28598,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -28888,7 +28628,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -29067,10 +28806,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -29120,7 +28856,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -29130,7 +28866,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -29160,7 +28896,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -29304,10 +29039,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -29357,7 +29089,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -29367,7 +29099,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -29397,7 +29129,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -29542,10 +29273,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -29595,7 +29323,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -29605,7 +29333,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -29635,7 +29363,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -29770,10 +29497,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -29823,7 +29547,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -29833,7 +29557,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -29863,7 +29587,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -30063,10 +29786,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no - widely used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty @@ -30116,7 +29836,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -30126,7 +29846,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -30156,7 +29876,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -30272,10 +29991,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -30325,7 +30041,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -30335,7 +30051,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -30365,7 +30081,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -30487,10 +30202,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -30540,7 +30252,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -30550,7 +30262,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -30580,7 +30292,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -30864,10 +30575,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no - widely used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty @@ -30917,7 +30625,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -30927,7 +30635,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -30957,7 +30665,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -31124,10 +30831,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -31177,7 +30881,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -31187,7 +30891,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -31217,7 +30921,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -31370,10 +31073,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -31423,7 +31123,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -31433,7 +31133,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -31463,7 +31163,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -31642,10 +31341,7 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -31695,7 +31391,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -31705,7 +31401,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -31735,7 +31431,6 @@ paths: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -32094,10 +31789,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used type - server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might be @@ -32144,7 +31836,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -32154,7 +31846,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -32180,7 +31872,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -32302,10 +31993,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used - type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might @@ -32355,7 +32043,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -32365,7 +32053,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -32391,7 +32079,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -37217,10 +36904,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used type - server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might be @@ -37268,7 +36952,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -37278,7 +36962,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -37304,7 +36988,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -37438,10 +37121,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used - type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might @@ -37491,7 +37171,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -37501,7 +37181,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -37528,7 +37208,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -37623,10 +37302,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used type - server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might be @@ -37674,7 +37350,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -37684,7 +37360,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -37710,7 +37386,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -37800,10 +37475,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used - type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might @@ -37853,7 +37525,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -37863,7 +37535,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -37889,7 +37561,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -37999,10 +37670,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used type - server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might be @@ -38050,7 +37718,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -38060,7 +37728,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -38086,7 +37754,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -38176,10 +37843,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used - type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might @@ -38229,7 +37893,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -38239,7 +37903,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -38265,7 +37929,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -38378,10 +38041,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used type - server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might be @@ -38429,7 +38089,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -38439,7 +38099,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -38465,7 +38125,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -38566,10 +38225,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used type - server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might be @@ -38617,7 +38273,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -38627,7 +38283,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -38653,7 +38309,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -38758,10 +38413,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -38811,7 +38463,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -38821,7 +38473,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -38850,7 +38502,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -38979,10 +38630,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -39032,7 +38680,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -39042,7 +38690,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -39071,7 +38719,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -39196,10 +38843,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -39249,7 +38893,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -39259,7 +38903,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -39288,7 +38932,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -42938,10 +42581,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -42991,7 +42631,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -43001,7 +42641,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -43030,7 +42670,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -43241,10 +42880,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -43294,7 +42930,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -43304,7 +42940,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -43333,7 +42969,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -43603,10 +43238,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used type - server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might be @@ -43654,7 +43286,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -43664,7 +43296,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -43690,7 +43322,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -46628,10 +46259,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used - type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might @@ -46681,7 +46309,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -46691,7 +46319,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -46717,7 +46345,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -46826,10 +46453,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used type - server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might be @@ -46877,7 +46501,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -46887,7 +46511,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -46913,7 +46537,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -47011,10 +46634,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used type - server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might be @@ -47096,10 +46716,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used - type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might @@ -47188,10 +46805,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -47303,10 +46917,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -47702,10 +47313,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used - type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might @@ -47755,7 +47363,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -47765,7 +47373,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -47791,7 +47399,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -48230,10 +47837,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -48283,7 +47887,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -48293,7 +47897,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -48322,7 +47926,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -48516,10 +48119,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -48569,7 +48169,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -48579,7 +48179,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -48609,7 +48209,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -49667,10 +49266,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -49720,7 +49316,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -49730,7 +49326,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -49759,7 +49355,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -50272,10 +49867,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used - type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might @@ -50325,7 +49917,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -50335,7 +49927,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -50362,7 +49954,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -50614,10 +50205,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -50667,7 +50255,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -50677,7 +50265,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -50706,7 +50294,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -51062,10 +50649,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -51115,7 +50699,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -51125,7 +50709,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -51155,7 +50739,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -51751,10 +51334,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used - type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might @@ -51804,7 +51384,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -51814,7 +51394,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -51841,7 +51421,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -52173,10 +51752,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -52226,7 +51802,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -52236,7 +51812,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -52265,7 +51841,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -52875,10 +52450,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used type - server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might be @@ -52926,7 +52498,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -52936,7 +52508,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -52962,7 +52534,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -53314,10 +52885,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used - type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might @@ -53367,7 +52935,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -53377,7 +52945,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -53403,7 +52971,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -53592,10 +53159,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used type - server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might be @@ -53643,7 +53207,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -53653,7 +53217,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -53679,7 +53243,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -54133,10 +53696,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used - type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might @@ -54186,7 +53746,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -54196,7 +53756,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -54223,7 +53783,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -55089,10 +54648,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used - type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might @@ -55142,7 +54698,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -55152,7 +54708,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -55179,7 +54735,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -55417,10 +54972,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -55470,7 +55022,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -55480,7 +55032,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -55509,7 +55061,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -55882,10 +55433,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used type - server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might be @@ -55933,7 +55481,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -55943,7 +55491,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -55969,7 +55517,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -56173,10 +55720,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -56226,7 +55770,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -56236,7 +55780,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -56265,7 +55809,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -56394,10 +55937,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -56447,7 +55987,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -56457,7 +55997,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -56486,7 +56026,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -56609,10 +56148,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -56662,7 +56198,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -56672,7 +56208,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -56701,7 +56237,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -56797,10 +56332,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely - used type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) @@ -56850,7 +56382,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -56860,7 +56392,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -56889,7 +56421,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -57005,10 +56536,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used - type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might @@ -57058,7 +56586,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -57068,7 +56596,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -57094,7 +56622,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -57210,10 +56737,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used - type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might @@ -57263,7 +56787,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -57273,7 +56797,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -57299,7 +56823,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular @@ -57390,10 +56913,7 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. As of May 2023, there are no widely used - type server - - implementations and no plans to implement one. + type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might @@ -57443,7 +56963,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -57453,7 +56973,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -57479,7 +56999,6 @@ definitions: JSON - ==== The JSON representation of an `Any` value uses the regular diff --git a/x/virtualgroup/keeper/payment.go b/x/virtualgroup/keeper/payment.go index 2539d1344..6414cb6f0 100644 --- a/x/virtualgroup/keeper/payment.go +++ b/x/virtualgroup/keeper/payment.go @@ -24,6 +24,16 @@ func (k Keeper) SettleAndDistributeGVGFamily(ctx sdk.Context, sp *sptypes.Storag return fmt.Errorf("fail to send coins: %s %s", paymentAddress, sp.FundingAddress) } + err = ctx.EventManager().EmitTypedEvent(&types.EventSettleGlobalVirtualGroupFamily{ + Id: family.Id, + SpId: sp.Id, + SpFundingAddress: sp.FundingAddress, + Amount: totalBalance, + }) + if err != nil { + ctx.Logger().Error("fail to send event for settlement", "vfg", family.Id, "err", err) + } + return nil } @@ -38,6 +48,8 @@ func (k Keeper) SettleAndDistributeGVG(ctx sdk.Context, gvg *types.GlobalVirtual if !amount.IsPositive() { return nil } + + fundingAddresses := make([]string, 0) for _, spID := range gvg.SecondarySpIds { sp, found := k.spKeeper.GetStorageProvider(ctx, spID) if !found { @@ -47,6 +59,19 @@ func (k Keeper) SettleAndDistributeGVG(ctx sdk.Context, gvg *types.GlobalVirtual if err != nil { return fmt.Errorf("fail to send coins: %s %s", paymentAddress, sp.FundingAddress) } + + fundingAddresses = append(fundingAddresses, sp.FundingAddress) } + + err = ctx.EventManager().EmitTypedEvent(&types.EventSettleGlobalVirtualGroup{ + Id: gvg.Id, + SpIds: gvg.SecondarySpIds, + SpFundingAddresses: fundingAddresses, + Amount: amount, + }) + if err != nil { + ctx.Logger().Error("fail to send event for settlement", "gvg", gvg.Id, "err", err) + } + return nil } diff --git a/x/virtualgroup/types/events.pb.go b/x/virtualgroup/types/events.pb.go index ed1e7a9e8..12ca216ce 100644 --- a/x/virtualgroup/types/events.pb.go +++ b/x/virtualgroup/types/events.pb.go @@ -893,7 +893,7 @@ type EventCompleteStorageProviderExit struct { StorageProviderAddress string `protobuf:"bytes,3,opt,name=storage_provider_address,json=storageProviderAddress,proto3" json:"storage_provider_address,omitempty"` // total_deposit defines the number of tokens deposited by this storage provider for staking. TotalDeposit github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,4,opt,name=total_deposit,json=totalDeposit,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"total_deposit"` - // forced_exit whether the exit is a forced exit + // forced_exit whether the exit is a forced exit ForcedExit bool `protobuf:"varint,5,opt,name=forced_exit,json=forcedExit,proto3" json:"forced_exit,omitempty"` } @@ -1228,6 +1228,136 @@ func (m *EventStorageProviderForcedExit) GetStorageProviderId() uint32 { return 0 } +type EventSettleGlobalVirtualGroupFamily struct { + // The id of global virtual group family, which is auto generated by blockchain + Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` + // The id of the primary sp who will receive the fund + SpId uint32 `protobuf:"varint,2,opt,name=sp_id,json=spId,proto3" json:"sp_id,omitempty"` + // The funding address of the sp + SpFundingAddress string `protobuf:"bytes,3,opt,name=sp_funding_address,json=spFundingAddress,proto3" json:"sp_funding_address,omitempty"` + // The amount the fund to send to sp + Amount github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,4,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"amount"` +} + +func (m *EventSettleGlobalVirtualGroupFamily) Reset() { *m = EventSettleGlobalVirtualGroupFamily{} } +func (m *EventSettleGlobalVirtualGroupFamily) String() string { return proto.CompactTextString(m) } +func (*EventSettleGlobalVirtualGroupFamily) ProtoMessage() {} +func (*EventSettleGlobalVirtualGroupFamily) Descriptor() ([]byte, []int) { + return fileDescriptor_ece39ea12016bd5b, []int{18} +} +func (m *EventSettleGlobalVirtualGroupFamily) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *EventSettleGlobalVirtualGroupFamily) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_EventSettleGlobalVirtualGroupFamily.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *EventSettleGlobalVirtualGroupFamily) XXX_Merge(src proto.Message) { + xxx_messageInfo_EventSettleGlobalVirtualGroupFamily.Merge(m, src) +} +func (m *EventSettleGlobalVirtualGroupFamily) XXX_Size() int { + return m.Size() +} +func (m *EventSettleGlobalVirtualGroupFamily) XXX_DiscardUnknown() { + xxx_messageInfo_EventSettleGlobalVirtualGroupFamily.DiscardUnknown(m) +} + +var xxx_messageInfo_EventSettleGlobalVirtualGroupFamily proto.InternalMessageInfo + +func (m *EventSettleGlobalVirtualGroupFamily) GetId() uint32 { + if m != nil { + return m.Id + } + return 0 +} + +func (m *EventSettleGlobalVirtualGroupFamily) GetSpId() uint32 { + if m != nil { + return m.SpId + } + return 0 +} + +func (m *EventSettleGlobalVirtualGroupFamily) GetSpFundingAddress() string { + if m != nil { + return m.SpFundingAddress + } + return "" +} + +type EventSettleGlobalVirtualGroup struct { + // The id of global virtual group, which is auto generated by blockchain + Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` + // The ids of the secondary sps who will receive the fund + SpIds []uint32 `protobuf:"varint,2,rep,packed,name=sp_ids,json=spIds,proto3" json:"sp_ids,omitempty"` + // The funding address of the sps + SpFundingAddresses []string `protobuf:"bytes,3,rep,name=sp_funding_addresses,json=spFundingAddresses,proto3" json:"sp_funding_addresses,omitempty"` + // The amount the fund to send to each sp + Amount github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,4,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"amount"` +} + +func (m *EventSettleGlobalVirtualGroup) Reset() { *m = EventSettleGlobalVirtualGroup{} } +func (m *EventSettleGlobalVirtualGroup) String() string { return proto.CompactTextString(m) } +func (*EventSettleGlobalVirtualGroup) ProtoMessage() {} +func (*EventSettleGlobalVirtualGroup) Descriptor() ([]byte, []int) { + return fileDescriptor_ece39ea12016bd5b, []int{19} +} +func (m *EventSettleGlobalVirtualGroup) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *EventSettleGlobalVirtualGroup) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_EventSettleGlobalVirtualGroup.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *EventSettleGlobalVirtualGroup) XXX_Merge(src proto.Message) { + xxx_messageInfo_EventSettleGlobalVirtualGroup.Merge(m, src) +} +func (m *EventSettleGlobalVirtualGroup) XXX_Size() int { + return m.Size() +} +func (m *EventSettleGlobalVirtualGroup) XXX_DiscardUnknown() { + xxx_messageInfo_EventSettleGlobalVirtualGroup.DiscardUnknown(m) +} + +var xxx_messageInfo_EventSettleGlobalVirtualGroup proto.InternalMessageInfo + +func (m *EventSettleGlobalVirtualGroup) GetId() uint32 { + if m != nil { + return m.Id + } + return 0 +} + +func (m *EventSettleGlobalVirtualGroup) GetSpIds() []uint32 { + if m != nil { + return m.SpIds + } + return nil +} + +func (m *EventSettleGlobalVirtualGroup) GetSpFundingAddresses() []string { + if m != nil { + return m.SpFundingAddresses + } + return nil +} + func init() { proto.RegisterType((*EventCreateGlobalVirtualGroup)(nil), "greenfield.virtualgroup.EventCreateGlobalVirtualGroup") proto.RegisterType((*EventUpdateGlobalVirtualGroup)(nil), "greenfield.virtualgroup.EventUpdateGlobalVirtualGroup") @@ -1247,6 +1377,8 @@ func init() { proto.RegisterType((*EventCompleteSwapIn)(nil), "greenfield.virtualgroup.EventCompleteSwapIn") proto.RegisterType((*EventCancelSwapIn)(nil), "greenfield.virtualgroup.EventCancelSwapIn") proto.RegisterType((*EventStorageProviderForcedExit)(nil), "greenfield.virtualgroup.EventStorageProviderForcedExit") + proto.RegisterType((*EventSettleGlobalVirtualGroupFamily)(nil), "greenfield.virtualgroup.EventSettleGlobalVirtualGroupFamily") + proto.RegisterType((*EventSettleGlobalVirtualGroup)(nil), "greenfield.virtualgroup.EventSettleGlobalVirtualGroup") } func init() { @@ -1254,65 +1386,71 @@ func init() { } var fileDescriptor_ece39ea12016bd5b = []byte{ - // 927 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x57, 0x4f, 0x6f, 0x1b, 0x45, - 0x14, 0xcf, 0xac, 0xdd, 0x12, 0xbf, 0xc4, 0x49, 0xbb, 0x75, 0xf1, 0x92, 0x52, 0xc7, 0x5a, 0x50, - 0xf1, 0x25, 0xf6, 0x01, 0x2a, 0x90, 0xe0, 0x42, 0xfa, 0x4f, 0x96, 0x10, 0x44, 0x6b, 0x8a, 0x04, - 0x97, 0xd5, 0x78, 0x67, 0xb2, 0x19, 0xd5, 0xde, 0x59, 0xcd, 0x8c, 0x43, 0xd2, 0x8f, 0xc0, 0x05, - 0xc4, 0x67, 0xe9, 0x07, 0xe0, 0xd8, 0x63, 0xd5, 0x13, 0xe2, 0x50, 0x55, 0x09, 0x17, 0x4e, 0x70, - 0x46, 0x42, 0xa0, 0x9d, 0x19, 0x3b, 0xfe, 0xdf, 0xd4, 0x69, 0x05, 0xe4, 0x94, 0xf8, 0xcd, 0x9b, - 0x37, 0xef, 0xf7, 0x7b, 0xbf, 0xf7, 0x66, 0x16, 0xde, 0x8d, 0x05, 0xa5, 0xc9, 0x2e, 0xa3, 0x1d, - 0xd2, 0xd8, 0x67, 0x42, 0xf5, 0x70, 0x27, 0x16, 0xbc, 0x97, 0x36, 0xe8, 0x3e, 0x4d, 0x94, 0xac, - 0xa7, 0x82, 0x2b, 0xee, 0x96, 0x4f, 0xbc, 0xea, 0xc3, 0x5e, 0x1b, 0x6f, 0x45, 0x5c, 0x76, 0xb9, - 0x0c, 0xb5, 0x5b, 0xc3, 0xfc, 0x30, 0x7b, 0x36, 0x4a, 0x31, 0x8f, 0xb9, 0xb1, 0x67, 0xff, 0x19, - 0xab, 0xff, 0x87, 0x03, 0xd7, 0xef, 0x64, 0xa1, 0x6f, 0x09, 0x8a, 0x15, 0xbd, 0xd7, 0xe1, 0x6d, - 0xdc, 0xf9, 0xca, 0x84, 0xbc, 0x97, 0x85, 0x74, 0xd7, 0xc0, 0x61, 0xc4, 0x43, 0x55, 0x54, 0x2b, - 0x06, 0x0e, 0x23, 0xee, 0x35, 0x28, 0xec, 0xe2, 0x2e, 0xeb, 0x1c, 0x86, 0x8c, 0x78, 0x8e, 0x36, - 0x2f, 0x1b, 0x43, 0x93, 0xb8, 0x3e, 0x14, 0x53, 0xc1, 0xba, 0x58, 0x1c, 0x86, 0x32, 0xcd, 0x1c, - 0x72, 0xda, 0x61, 0xc5, 0x1a, 0x5b, 0x69, 0x93, 0xb8, 0x35, 0xb8, 0x24, 0x69, 0xc4, 0x13, 0x32, - 0xf0, 0x92, 0x5e, 0xbe, 0x9a, 0xab, 0x15, 0x83, 0xb5, 0x81, 0x3d, 0x73, 0x94, 0xee, 0x26, 0xac, - 0x48, 0xc5, 0x05, 0x25, 0xa1, 0x64, 0x0f, 0xa9, 0x77, 0xa1, 0x8a, 0x6a, 0xf9, 0x00, 0x8c, 0xa9, - 0xc5, 0x1e, 0x52, 0x77, 0x07, 0xca, 0x16, 0x7e, 0x98, 0xe2, 0xc3, 0x2e, 0x4d, 0x54, 0x88, 0x09, - 0x11, 0x54, 0x4a, 0xef, 0x62, 0x15, 0xd5, 0x0a, 0xdb, 0xde, 0xd3, 0x47, 0x5b, 0x25, 0x4b, 0xc3, - 0xa7, 0x66, 0xa5, 0xa5, 0x04, 0x4b, 0xe2, 0xe0, 0xaa, 0xdd, 0xb8, 0x63, 0xf6, 0xd9, 0x45, 0x17, - 0x43, 0x51, 0x71, 0x85, 0x3b, 0x21, 0xa1, 0x29, 0x97, 0x4c, 0x79, 0x6f, 0xe8, 0x38, 0x9f, 0x3c, - 0x7e, 0xb6, 0xb9, 0xf4, 0xcb, 0xb3, 0xcd, 0x1b, 0x31, 0x53, 0x7b, 0xbd, 0x76, 0x3d, 0xe2, 0x5d, - 0xcb, 0xae, 0xfd, 0xb3, 0x25, 0xc9, 0x83, 0x86, 0x3a, 0x4c, 0xa9, 0xac, 0x37, 0x13, 0xf5, 0xf4, - 0xd1, 0x16, 0xd8, 0x53, 0x9b, 0x89, 0x0a, 0x56, 0x75, 0xc8, 0xdb, 0x26, 0xa2, 0xff, 0x37, 0xb2, - 0x94, 0xdf, 0x4f, 0xc9, 0xe9, 0x28, 0xbf, 0x0e, 0x06, 0xb4, 0xa1, 0xc1, 0xd1, 0x34, 0x14, 0xb4, - 0x45, 0xb3, 0x30, 0x91, 0x73, 0xee, 0x55, 0xe7, 0x3c, 0x59, 0xd7, 0xfc, 0xe9, 0xea, 0x7a, 0x61, - 0x5a, 0x5d, 0xfd, 0x96, 0x25, 0xe0, 0x36, 0xed, 0xd0, 0x53, 0x11, 0x30, 0x71, 0xbc, 0x33, 0x71, - 0xbc, 0xff, 0x2b, 0x82, 0x77, 0xe6, 0x2a, 0xf9, 0xae, 0x16, 0xe9, 0x22, 0xb1, 0xe7, 0xe9, 0x2c, - 0xb7, 0x98, 0xce, 0x3e, 0x04, 0x2f, 0xd6, 0x19, 0x86, 0xfd, 0xc0, 0xba, 0x81, 0x87, 0x9a, 0xe1, - 0x6a, 0x3c, 0x81, 0x20, 0xe3, 0xee, 0xc7, 0x3e, 0xcc, 0x59, 0xea, 0x39, 0x03, 0xcc, 0x79, 0x49, - 0xe5, 0xe6, 0x25, 0xf5, 0xb5, 0xcd, 0x69, 0x56, 0x41, 0x17, 0xcf, 0xc9, 0xff, 0x09, 0xc1, 0xdb, - 0x43, 0x65, 0xfd, 0x8c, 0x47, 0x2f, 0xd0, 0xca, 0x47, 0x50, 0x68, 0xf7, 0xa2, 0x07, 0x54, 0xf5, - 0x03, 0x16, 0xb6, 0xaf, 0xd9, 0x4e, 0xc8, 0xdf, 0x67, 0x5a, 0xe7, 0x2b, 0xb6, 0x52, 0xd9, 0xcf, - 0x60, 0xd9, 0x78, 0x37, 0x89, 0x7b, 0x13, 0xca, 0x33, 0xe0, 0xdb, 0x31, 0x56, 0x9a, 0x86, 0x7e, - 0x7c, 0x4a, 0xe5, 0xc7, 0xa7, 0xd4, 0x09, 0x04, 0x53, 0xb2, 0xff, 0x23, 0x84, 0x3d, 0x8b, 0xc0, - 0x14, 0xf8, 0x35, 0x22, 0xf0, 0x8f, 0x11, 0xac, 0xea, 0xa3, 0x5a, 0xdf, 0xe2, 0xf4, 0x8b, 0x9e, - 0x72, 0xeb, 0x70, 0x25, 0x4b, 0x04, 0xc7, 0x34, 0xbb, 0xd5, 0xf6, 0x19, 0xa1, 0x22, 0x1c, 0x9c, - 0x75, 0xd9, 0x2e, 0xed, 0xd8, 0x95, 0x26, 0x71, 0xb7, 0xa1, 0x32, 0x95, 0x82, 0xf1, 0x4b, 0x6b, - 0x23, 0x9e, 0x21, 0xd3, 0x33, 0x34, 0x82, 0x7b, 0x03, 0xd6, 0x65, 0x2f, 0x8a, 0xa8, 0x94, 0x5c, - 0x8c, 0x4c, 0xca, 0xe2, 0xc0, 0xac, 0x55, 0xfd, 0x27, 0x82, 0x92, 0x51, 0x35, 0xef, 0xa6, 0x19, - 0xa5, 0x8b, 0xa2, 0xbd, 0x09, 0x65, 0x29, 0xa2, 0x70, 0xda, 0x1e, 0x03, 0xb3, 0x24, 0x45, 0xd4, - 0x5a, 0x80, 0xa4, 0xdc, 0x99, 0x48, 0x9a, 0x3b, 0xc2, 0x7e, 0x43, 0xe0, 0x1a, 0xf0, 0x38, 0x89, - 0x68, 0xe7, 0x5c, 0x17, 0xfa, 0x7b, 0x04, 0x9e, 0x91, 0xf3, 0x68, 0xfe, 0x77, 0x0e, 0xd8, 0xcb, - 0x23, 0xbe, 0x05, 0x97, 0x78, 0x4a, 0x05, 0x56, 0x5c, 0x0c, 0xee, 0x1f, 0xe7, 0x05, 0xf7, 0xcf, - 0x7a, 0x7f, 0x87, 0x35, 0xfb, 0xbf, 0x3b, 0x50, 0x1d, 0x95, 0xde, 0x7f, 0x24, 0x33, 0x37, 0x00, - 0x6f, 0xe2, 0xd0, 0xd3, 0x5e, 0xb3, 0x6f, 0x8e, 0xe5, 0x34, 0xf3, 0x3d, 0x97, 0x7f, 0xe5, 0x6f, - 0xa3, 0x4d, 0x58, 0xd9, 0xe5, 0x22, 0xa2, 0x24, 0xa4, 0x07, 0x4c, 0xe9, 0x57, 0xea, 0x72, 0x00, - 0xc6, 0x94, 0x91, 0xe9, 0x7f, 0xe7, 0x58, 0xbd, 0x07, 0x54, 0x52, 0xb1, 0xaf, 0x7b, 0xbd, 0x99, - 0xfc, 0x2b, 0x7a, 0x5f, 0xf0, 0x7e, 0xa8, 0xc2, 0xaa, 0xc2, 0x22, 0xa6, 0x6a, 0x44, 0xea, 0x60, - 0x6c, 0xfa, 0xe9, 0xf0, 0x1e, 0xac, 0xd3, 0x83, 0x94, 0x09, 0xac, 0x18, 0x4f, 0x42, 0xc5, 0xba, - 0xfd, 0xe7, 0xfa, 0xda, 0x89, 0xf9, 0x4b, 0xd6, 0xa5, 0xfe, 0x5f, 0x08, 0xae, 0x4c, 0x4c, 0xbe, - 0x05, 0xd8, 0xf8, 0x18, 0x36, 0xfa, 0x29, 0xcd, 0x9c, 0x7d, 0x65, 0x9b, 0xe0, 0x6b, 0x19, 0x7f, - 0x73, 0xa8, 0xcc, 0xcf, 0xa6, 0xd2, 0x7f, 0x8e, 0xe0, 0xf2, 0xd8, 0xf0, 0x3b, 0x67, 0x5a, 0xf0, - 0x77, 0xa0, 0x32, 0x6d, 0xe4, 0xdd, 0x1d, 0x74, 0xc4, 0xcb, 0xc2, 0xdd, 0xfe, 0xfc, 0xf1, 0x51, - 0x05, 0x3d, 0x39, 0xaa, 0xa0, 0xe7, 0x47, 0x15, 0xf4, 0xc3, 0x71, 0x65, 0xe9, 0xc9, 0x71, 0x65, - 0xe9, 0xe7, 0xe3, 0xca, 0xd2, 0x37, 0x1f, 0x0c, 0x35, 0x70, 0x3b, 0x69, 0x6f, 0x45, 0x7b, 0x98, - 0x25, 0x8d, 0xa1, 0x8f, 0xe8, 0x83, 0xd1, 0xcf, 0x68, 0xdd, 0xd2, 0xed, 0x8b, 0xfa, 0xe3, 0xf7, - 0xfd, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xa6, 0xb9, 0x16, 0x32, 0x6e, 0x0f, 0x00, 0x00, + // 1016 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x58, 0x41, 0x6f, 0x1b, 0x45, + 0x14, 0xce, 0xae, 0x9d, 0x10, 0xbf, 0xc4, 0x49, 0xba, 0x71, 0xf0, 0x92, 0x12, 0xc7, 0x5a, 0x50, + 0xf1, 0x25, 0xf6, 0x01, 0x2a, 0x90, 0xe0, 0x42, 0xda, 0xa6, 0x32, 0x42, 0x10, 0xd9, 0x2d, 0x12, + 0x5c, 0x56, 0xeb, 0x9d, 0xc9, 0x66, 0x54, 0xef, 0xce, 0x6a, 0x66, 0x1c, 0x92, 0xfe, 0x04, 0x2e, + 0x20, 0x7e, 0x4b, 0x7f, 0x00, 0xc7, 0x1e, 0xab, 0x9e, 0x10, 0x87, 0xaa, 0x4a, 0x38, 0xc0, 0x09, + 0xce, 0x48, 0x08, 0xb4, 0x33, 0x63, 0xc7, 0xf6, 0xda, 0xae, 0xeb, 0x24, 0x82, 0xf6, 0x94, 0xec, + 0xdb, 0x99, 0x37, 0xef, 0xfb, 0xde, 0x37, 0xef, 0x3d, 0x2f, 0xbc, 0x1b, 0x30, 0x8c, 0xa3, 0x03, + 0x82, 0xdb, 0xa8, 0x76, 0x44, 0x98, 0xe8, 0x78, 0xed, 0x80, 0xd1, 0x4e, 0x5c, 0xc3, 0x47, 0x38, + 0x12, 0xbc, 0x1a, 0x33, 0x2a, 0xa8, 0x55, 0x3c, 0x5f, 0x55, 0xed, 0x5f, 0xb5, 0xf9, 0x96, 0x4f, + 0x79, 0x48, 0xb9, 0x2b, 0x97, 0xd5, 0xd4, 0x83, 0xda, 0xb3, 0x59, 0x08, 0x68, 0x40, 0x95, 0x3d, + 0xf9, 0x4f, 0x59, 0x9d, 0x3f, 0x4d, 0xd8, 0xba, 0x93, 0xb8, 0xbe, 0xc5, 0xb0, 0x27, 0xf0, 0xdd, + 0x36, 0x6d, 0x79, 0xed, 0xaf, 0x94, 0xcb, 0xbb, 0x89, 0x4b, 0x6b, 0x05, 0x4c, 0x82, 0x6c, 0xa3, + 0x6c, 0x54, 0xf2, 0x0d, 0x93, 0x20, 0xeb, 0x3a, 0xe4, 0x0e, 0xbc, 0x90, 0xb4, 0x4f, 0x5c, 0x82, + 0x6c, 0x53, 0x9a, 0x17, 0x95, 0xa1, 0x8e, 0x2c, 0x07, 0xf2, 0x31, 0x23, 0xa1, 0xc7, 0x4e, 0x5c, + 0x1e, 0x27, 0x0b, 0x32, 0x72, 0xc1, 0x92, 0x36, 0x36, 0xe3, 0x3a, 0xb2, 0x2a, 0xb0, 0xc6, 0xb1, + 0x4f, 0x23, 0xd4, 0x5b, 0xc5, 0xed, 0x6c, 0x39, 0x53, 0xc9, 0x37, 0x56, 0x7a, 0xf6, 0x64, 0x21, + 0xb7, 0xb6, 0x61, 0x89, 0x0b, 0xca, 0x30, 0x72, 0x39, 0x79, 0x88, 0xed, 0xf9, 0xb2, 0x51, 0xc9, + 0x36, 0x40, 0x99, 0x9a, 0xe4, 0x21, 0xb6, 0xf6, 0xa1, 0xa8, 0xe1, 0xbb, 0xb1, 0x77, 0x12, 0xe2, + 0x48, 0xb8, 0x1e, 0x42, 0x0c, 0x73, 0x6e, 0x2f, 0x94, 0x8d, 0x4a, 0x6e, 0xd7, 0x7e, 0xfa, 0x68, + 0xa7, 0xa0, 0x69, 0xf8, 0x54, 0xbd, 0x69, 0x0a, 0x46, 0xa2, 0xa0, 0xb1, 0xa1, 0x37, 0xee, 0xab, + 0x7d, 0xfa, 0xa5, 0xe5, 0x41, 0x5e, 0x50, 0xe1, 0xb5, 0x5d, 0x84, 0x63, 0xca, 0x89, 0xb0, 0xdf, + 0x90, 0x7e, 0x3e, 0x79, 0xfc, 0x6c, 0x7b, 0xee, 0x97, 0x67, 0xdb, 0x37, 0x02, 0x22, 0x0e, 0x3b, + 0xad, 0xaa, 0x4f, 0x43, 0xcd, 0xae, 0xfe, 0xb3, 0xc3, 0xd1, 0x83, 0x9a, 0x38, 0x89, 0x31, 0xaf, + 0xd6, 0x23, 0xf1, 0xf4, 0xd1, 0x0e, 0xe8, 0x53, 0xeb, 0x91, 0x68, 0x2c, 0x4b, 0x97, 0xb7, 0x95, + 0x47, 0xe7, 0x1f, 0x43, 0x53, 0x7e, 0x3f, 0x46, 0xd3, 0x51, 0xbe, 0x05, 0x0a, 0xb4, 0xa2, 0xc1, + 0x94, 0x34, 0xe4, 0xa4, 0x45, 0xb2, 0x90, 0x8a, 0x39, 0x73, 0xd9, 0x31, 0xa7, 0xf3, 0x9a, 0x9d, + 0x2e, 0xaf, 0xf3, 0xa3, 0xf2, 0xea, 0x34, 0x35, 0x01, 0xb7, 0x71, 0x1b, 0x4f, 0x45, 0x40, 0xea, + 0x78, 0x33, 0x75, 0xbc, 0xf3, 0xab, 0x01, 0xef, 0x4c, 0x54, 0xf2, 0x9e, 0x14, 0xe9, 0x2c, 0xbe, + 0x27, 0xe9, 0x2c, 0x33, 0x9b, 0xce, 0x3e, 0x04, 0x3b, 0x90, 0x11, 0xba, 0x5d, 0xc7, 0xf2, 0x02, + 0xf7, 0x5d, 0x86, 0x8d, 0x20, 0x85, 0x20, 0xe1, 0xee, 0xc7, 0x2e, 0xcc, 0x71, 0xea, 0xb9, 0x00, + 0xcc, 0x49, 0x41, 0x65, 0x26, 0x05, 0xf5, 0xb5, 0x8e, 0x69, 0x5c, 0x42, 0x67, 0x8f, 0xc9, 0xf9, + 0xc9, 0x80, 0xb7, 0xfb, 0xd2, 0xfa, 0x39, 0xf5, 0x5f, 0xa0, 0x95, 0x8f, 0x20, 0xd7, 0xea, 0xf8, + 0x0f, 0xb0, 0xe8, 0x3a, 0xcc, 0xed, 0x5e, 0xd7, 0x37, 0x21, 0x7b, 0x9f, 0x48, 0x9d, 0x2f, 0xe9, + 0x4c, 0x25, 0x8f, 0x8d, 0x45, 0xb5, 0xba, 0x8e, 0xac, 0x9b, 0x50, 0x1c, 0x03, 0x5f, 0x97, 0xb1, + 0xc2, 0x28, 0xf4, 0xc3, 0x55, 0x2a, 0x3b, 0x5c, 0xa5, 0xce, 0x21, 0xa8, 0x94, 0xbd, 0x8a, 0x10, + 0x0e, 0x35, 0x02, 0x95, 0xe0, 0x2b, 0x44, 0xe0, 0x9c, 0x19, 0xb0, 0x2c, 0x8f, 0x6a, 0x7e, 0xeb, + 0xc5, 0x5f, 0x76, 0x84, 0x55, 0x85, 0xf5, 0x24, 0x10, 0x2f, 0xc0, 0x49, 0x57, 0x3b, 0x22, 0x08, + 0x33, 0xb7, 0x77, 0xd6, 0x35, 0xfd, 0x6a, 0x5f, 0xbf, 0xa9, 0x23, 0x6b, 0x17, 0x4a, 0x23, 0x29, + 0x18, 0x6e, 0x5a, 0x9b, 0xc1, 0x18, 0x99, 0x5e, 0xe0, 0x22, 0x58, 0x37, 0x60, 0x95, 0x77, 0x7c, + 0x1f, 0x73, 0x4e, 0xd9, 0x40, 0xa5, 0xcc, 0xf7, 0xcc, 0x52, 0xd5, 0x7f, 0x19, 0x50, 0x50, 0xaa, + 0xa6, 0x61, 0x9c, 0x50, 0x3a, 0x2b, 0xda, 0x9b, 0x50, 0xe4, 0xcc, 0x77, 0x47, 0xed, 0x51, 0x30, + 0x0b, 0x9c, 0xf9, 0xcd, 0x19, 0x48, 0xca, 0x5c, 0x88, 0xa4, 0x89, 0x25, 0xec, 0x77, 0x03, 0x2c, + 0x05, 0xde, 0x8b, 0x7c, 0xdc, 0x7e, 0xad, 0x13, 0xfd, 0xbd, 0x01, 0xb6, 0x92, 0xf3, 0x60, 0xfc, + 0x77, 0x8e, 0xc9, 0xcb, 0x23, 0xbe, 0x05, 0x6b, 0x34, 0xc6, 0xcc, 0x13, 0x94, 0xf5, 0xfa, 0x8f, + 0xf9, 0x82, 0xfe, 0xb3, 0xda, 0xdd, 0xa1, 0xcd, 0xce, 0x1f, 0x26, 0x94, 0x07, 0xa5, 0xf7, 0x3f, + 0x89, 0xcc, 0x6a, 0x80, 0x9d, 0x3a, 0x74, 0xda, 0x36, 0xfb, 0xe6, 0x50, 0x4c, 0x63, 0xe7, 0xb9, + 0xec, 0xa5, 0xcf, 0x46, 0xdb, 0xb0, 0x74, 0x40, 0x99, 0x8f, 0x91, 0x8b, 0x8f, 0x89, 0x90, 0x53, + 0xea, 0x62, 0x03, 0x94, 0x29, 0x21, 0xd3, 0xf9, 0xce, 0xd4, 0x7a, 0x6f, 0x60, 0x8e, 0xd9, 0x91, + 0xbc, 0xeb, 0xf5, 0xe8, 0x3f, 0xd1, 0xfb, 0x8c, 0xfd, 0xa1, 0x0c, 0xcb, 0xc2, 0x63, 0x01, 0x16, + 0x03, 0x52, 0x07, 0x65, 0x93, 0xa3, 0xc3, 0x7b, 0xb0, 0x8a, 0x8f, 0x63, 0xc2, 0x3c, 0x41, 0x68, + 0xe4, 0x0a, 0x12, 0x76, 0xc7, 0xf5, 0x95, 0x73, 0xf3, 0x3d, 0x12, 0x62, 0xe7, 0x6f, 0x03, 0xd6, + 0x53, 0x95, 0x6f, 0x06, 0x36, 0x3e, 0x86, 0xcd, 0x6e, 0x48, 0x63, 0x6b, 0x5f, 0x51, 0x07, 0x78, + 0x25, 0xe5, 0x6f, 0x02, 0x95, 0xd9, 0xf1, 0x54, 0x3a, 0xcf, 0x0d, 0xb8, 0x36, 0x54, 0xfc, 0x5e, + 0x33, 0x2d, 0x38, 0xfb, 0x50, 0x1a, 0x55, 0xf2, 0xf6, 0x7a, 0x37, 0xe2, 0x65, 0xe1, 0x3a, 0xbf, + 0x75, 0x87, 0xde, 0x26, 0x16, 0xa2, 0x3d, 0xfd, 0x80, 0xb9, 0x0e, 0xf3, 0xfd, 0x83, 0x65, 0x96, + 0x27, 0x00, 0xf6, 0xc0, 0xe2, 0xb1, 0x7b, 0xd0, 0x89, 0x10, 0x89, 0x82, 0xa9, 0x0b, 0xcc, 0x1a, + 0x8f, 0xf7, 0xd4, 0x96, 0x6e, 0x69, 0xb9, 0x07, 0x0b, 0x5e, 0x48, 0x3b, 0xd1, 0xe5, 0xd4, 0x14, + 0xed, 0x2b, 0x81, 0xba, 0x35, 0x11, 0x6a, 0x0a, 0xe4, 0x06, 0x2c, 0xe8, 0x5f, 0x5b, 0xa6, 0xec, + 0x58, 0xf3, 0x5c, 0x76, 0xa8, 0xcf, 0xa0, 0x90, 0x86, 0x89, 0x55, 0x5b, 0x9b, 0x04, 0xd4, 0x1a, + 0x06, 0x8a, 0xaf, 0x08, 0xea, 0xee, 0x17, 0x8f, 0x4f, 0x4b, 0xc6, 0x93, 0xd3, 0x92, 0xf1, 0xfc, + 0xb4, 0x64, 0xfc, 0x70, 0x56, 0x9a, 0x7b, 0x72, 0x56, 0x9a, 0xfb, 0xf9, 0xac, 0x34, 0xf7, 0xcd, + 0x07, 0x7d, 0x7e, 0x5b, 0x51, 0x6b, 0xc7, 0x3f, 0xf4, 0x48, 0x54, 0xeb, 0xfb, 0x34, 0x72, 0x3c, + 0xf8, 0x71, 0x44, 0x9e, 0xd4, 0x5a, 0x90, 0x9f, 0x34, 0xde, 0xff, 0x37, 0x00, 0x00, 0xff, 0xff, + 0x4c, 0x7d, 0xe7, 0x95, 0x44, 0x11, 0x00, 0x00, } func (m *EventCreateGlobalVirtualGroup) Marshal() (dAtA []byte, err error) { @@ -2195,6 +2333,121 @@ func (m *EventStorageProviderForcedExit) MarshalToSizedBuffer(dAtA []byte) (int, return len(dAtA) - i, nil } +func (m *EventSettleGlobalVirtualGroupFamily) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *EventSettleGlobalVirtualGroupFamily) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *EventSettleGlobalVirtualGroupFamily) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + { + size := m.Amount.Size() + i -= size + if _, err := m.Amount.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + if len(m.SpFundingAddress) > 0 { + i -= len(m.SpFundingAddress) + copy(dAtA[i:], m.SpFundingAddress) + i = encodeVarintEvents(dAtA, i, uint64(len(m.SpFundingAddress))) + i-- + dAtA[i] = 0x1a + } + if m.SpId != 0 { + i = encodeVarintEvents(dAtA, i, uint64(m.SpId)) + i-- + dAtA[i] = 0x10 + } + if m.Id != 0 { + i = encodeVarintEvents(dAtA, i, uint64(m.Id)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *EventSettleGlobalVirtualGroup) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *EventSettleGlobalVirtualGroup) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *EventSettleGlobalVirtualGroup) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + { + size := m.Amount.Size() + i -= size + if _, err := m.Amount.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + if len(m.SpFundingAddresses) > 0 { + for iNdEx := len(m.SpFundingAddresses) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.SpFundingAddresses[iNdEx]) + copy(dAtA[i:], m.SpFundingAddresses[iNdEx]) + i = encodeVarintEvents(dAtA, i, uint64(len(m.SpFundingAddresses[iNdEx]))) + i-- + dAtA[i] = 0x1a + } + } + if len(m.SpIds) > 0 { + dAtA16 := make([]byte, len(m.SpIds)*10) + var j15 int + for _, num := range m.SpIds { + for num >= 1<<7 { + dAtA16[j15] = uint8(uint64(num)&0x7f | 0x80) + num >>= 7 + j15++ + } + dAtA16[j15] = uint8(num) + j15++ + } + i -= j15 + copy(dAtA[i:], dAtA16[:j15]) + i = encodeVarintEvents(dAtA, i, uint64(j15)) + i-- + dAtA[i] = 0x12 + } + if m.Id != 0 { + i = encodeVarintEvents(dAtA, i, uint64(m.Id)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func encodeVarintEvents(dAtA []byte, offset int, v uint64) int { offset -= sovEvents(v) base := offset @@ -2593,6 +2846,54 @@ func (m *EventStorageProviderForcedExit) Size() (n int) { return n } +func (m *EventSettleGlobalVirtualGroupFamily) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Id != 0 { + n += 1 + sovEvents(uint64(m.Id)) + } + if m.SpId != 0 { + n += 1 + sovEvents(uint64(m.SpId)) + } + l = len(m.SpFundingAddress) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = m.Amount.Size() + n += 1 + l + sovEvents(uint64(l)) + return n +} + +func (m *EventSettleGlobalVirtualGroup) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Id != 0 { + n += 1 + sovEvents(uint64(m.Id)) + } + if len(m.SpIds) > 0 { + l = 0 + for _, e := range m.SpIds { + l += sovEvents(uint64(e)) + } + n += 1 + sovEvents(uint64(l)) + l + } + if len(m.SpFundingAddresses) > 0 { + for _, s := range m.SpFundingAddresses { + l = len(s) + n += 1 + l + sovEvents(uint64(l)) + } + } + l = m.Amount.Size() + n += 1 + l + sovEvents(uint64(l)) + return n +} + func sovEvents(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } @@ -5308,6 +5609,371 @@ func (m *EventStorageProviderForcedExit) Unmarshal(dAtA []byte) error { } return nil } +func (m *EventSettleGlobalVirtualGroupFamily) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: EventSettleGlobalVirtualGroupFamily: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: EventSettleGlobalVirtualGroupFamily: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType) + } + m.Id = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Id |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field SpId", wireType) + } + m.SpId = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.SpId |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SpFundingAddress", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SpFundingAddress = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *EventSettleGlobalVirtualGroup) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: EventSettleGlobalVirtualGroup: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: EventSettleGlobalVirtualGroup: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType) + } + m.Id = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Id |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType == 0 { + var v uint32 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.SpIds = append(m.SpIds, v) + } else if wireType == 2 { + var packedLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + packedLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if packedLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + packedLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + var elementCount int + var count int + for _, integer := range dAtA[iNdEx:postIndex] { + if integer < 128 { + count++ + } + } + elementCount = count + if elementCount != 0 && len(m.SpIds) == 0 { + m.SpIds = make([]uint32, 0, elementCount) + } + for iNdEx < postIndex { + var v uint32 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.SpIds = append(m.SpIds, v) + } + } else { + return fmt.Errorf("proto: wrong wireType = %d for field SpIds", wireType) + } + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SpFundingAddresses", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SpFundingAddresses = append(m.SpFundingAddresses, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipEvents(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 From e604b8ada04a3b75e1850b9463431517d7a6e5f0 Mon Sep 17 00:00:00 2001 From: forcodedancing Date: Fri, 19 Jan 2024 19:38:50 +0800 Subject: [PATCH 2/3] fix proto lint and test issues --- e2e/tests/virtualgroup_test.go | 4 ++-- proto/greenfield/virtualgroup/events.proto | 2 +- x/virtualgroup/types/events.pb.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/e2e/tests/virtualgroup_test.go b/e2e/tests/virtualgroup_test.go index d08be5f43..012b8ea22 100644 --- a/e2e/tests/virtualgroup_test.go +++ b/e2e/tests/virtualgroup_test.go @@ -1329,7 +1329,7 @@ func (s *VirtualGroupTestSuite) TestSPExit_SwapInfo_Expired() { func filterSettleGVGEventFromTx(txRes *sdk.TxResponse) virtualgroupmoduletypes.EventSettleGlobalVirtualGroup { idStr, amountStr := "", "" for _, event := range txRes.Logs[0].Events { - if event.Type == "greenfield.challenge.EventSettleGlobalVirtualGroup" { + if event.Type == "greenfield.virtualgroup.EventSettleGlobalVirtualGroup" { for _, attr := range event.Attributes { if attr.Key == "id" { idStr = strings.Trim(attr.Value, `"`) @@ -1350,7 +1350,7 @@ func filterSettleGVGEventFromTx(txRes *sdk.TxResponse) virtualgroupmoduletypes.E func filterSettleGVGFamilyEventFromTx(txRes *sdk.TxResponse) virtualgroupmoduletypes.EventSettleGlobalVirtualGroupFamily { idStr, spIdStr, amountStr := "", "", "" for _, event := range txRes.Logs[0].Events { - if event.Type == "greenfield.challenge.EventSettleGlobalVirtualGroupFamily" { + if event.Type == "greenfield.virtualgroup.EventSettleGlobalVirtualGroupFamily" { for _, attr := range event.Attributes { if attr.Key == "id" { idStr = strings.Trim(attr.Value, `"`) diff --git a/proto/greenfield/virtualgroup/events.proto b/proto/greenfield/virtualgroup/events.proto index 95a062dfe..7a74aae0b 100644 --- a/proto/greenfield/virtualgroup/events.proto +++ b/proto/greenfield/virtualgroup/events.proto @@ -175,7 +175,7 @@ message EventCompleteStorageProviderExit { (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false ]; - // forced_exit whether the exit is a forced exit + // forced_exit whether the exit is a forced exit bool forced_exit = 5; } diff --git a/x/virtualgroup/types/events.pb.go b/x/virtualgroup/types/events.pb.go index 12ca216ce..1ba6c38d7 100644 --- a/x/virtualgroup/types/events.pb.go +++ b/x/virtualgroup/types/events.pb.go @@ -893,7 +893,7 @@ type EventCompleteStorageProviderExit struct { StorageProviderAddress string `protobuf:"bytes,3,opt,name=storage_provider_address,json=storageProviderAddress,proto3" json:"storage_provider_address,omitempty"` // total_deposit defines the number of tokens deposited by this storage provider for staking. TotalDeposit github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,4,opt,name=total_deposit,json=totalDeposit,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"total_deposit"` - // forced_exit whether the exit is a forced exit + // forced_exit whether the exit is a forced exit ForcedExit bool `protobuf:"varint,5,opt,name=forced_exit,json=forcedExit,proto3" json:"forced_exit,omitempty"` } From d7d986f2b8784628bfea39433781500549dc842e Mon Sep 17 00:00:00 2001 From: forcodedancing Date: Fri, 2 Feb 2024 13:18:31 +0800 Subject: [PATCH 3/3] fix swagger format issue --- swagger/static/swagger.yaml | 1185 ++++++++++++++++++++++++----------- 1 file changed, 833 insertions(+), 352 deletions(-) diff --git a/swagger/static/swagger.yaml b/swagger/static/swagger.yaml index 4e49e1254..a694c0dc5 100644 --- a/swagger/static/swagger.yaml +++ b/swagger/static/swagger.yaml @@ -6371,7 +6371,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no + widely used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty @@ -6421,7 +6424,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -6431,7 +6434,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -6461,6 +6464,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -6575,7 +6579,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -6625,7 +6632,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -6635,7 +6642,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -6665,6 +6672,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -6783,7 +6791,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -6833,7 +6844,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -6843,7 +6854,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -6873,6 +6884,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -7003,7 +7015,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -7053,7 +7068,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -7063,7 +7078,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -7093,6 +7108,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -7251,7 +7267,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -7301,7 +7320,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -7311,7 +7330,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -7341,6 +7360,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -7445,7 +7465,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -7495,7 +7518,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -7505,7 +7528,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -7535,6 +7558,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -7664,7 +7688,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -7714,7 +7741,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -7724,7 +7751,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -7754,6 +7781,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -7880,7 +7908,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -7930,7 +7961,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -7940,7 +7971,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -7970,6 +8001,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -8080,7 +8112,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -8130,7 +8165,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -8140,7 +8175,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -8170,6 +8205,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -8271,7 +8307,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -8321,7 +8360,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -8331,7 +8370,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -8361,6 +8400,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -8465,7 +8505,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -8515,7 +8558,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -8525,7 +8568,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -8555,6 +8598,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -8698,7 +8742,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -8748,7 +8795,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -8758,7 +8805,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -8788,6 +8835,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -8895,7 +8943,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no + widely used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty @@ -8945,7 +8996,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -8955,7 +9006,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -8985,6 +9036,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -9130,7 +9182,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -9180,7 +9235,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -9190,7 +9245,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -9220,6 +9275,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -9404,7 +9460,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no + widely used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty @@ -9454,7 +9513,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -9464,7 +9523,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -9494,6 +9553,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -9631,7 +9691,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -9681,7 +9744,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -9691,7 +9754,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -9721,6 +9784,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -9894,7 +9958,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no + widely used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty @@ -9944,7 +10011,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -9954,7 +10021,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -9984,6 +10051,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -10121,7 +10189,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -10171,7 +10242,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -10181,7 +10252,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -10211,6 +10282,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -11843,7 +11915,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -11893,7 +11968,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -11903,7 +11978,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -11933,6 +12008,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -13176,7 +13252,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -13226,7 +13305,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -13236,7 +13315,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -13266,6 +13345,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -14490,7 +14570,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -14540,7 +14623,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -14550,7 +14633,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -14580,6 +14663,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -14774,7 +14858,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -14824,7 +14911,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -14834,7 +14921,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -14864,6 +14951,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -14985,7 +15073,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -15035,7 +15126,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -15045,7 +15136,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -15075,6 +15166,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -15187,7 +15279,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no + widely used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty @@ -15237,7 +15332,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -15247,7 +15342,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -15277,6 +15372,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -15412,7 +15508,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -15462,7 +15561,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -15472,7 +15571,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -15502,6 +15601,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -15671,7 +15771,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no + widely used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty @@ -15721,7 +15824,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -15731,7 +15834,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -15761,6 +15864,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -15896,7 +16000,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -15946,7 +16053,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -15956,7 +16063,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -15986,6 +16093,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -17117,7 +17225,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -17167,7 +17278,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -17177,7 +17288,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -17207,6 +17318,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -17336,7 +17448,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -17386,7 +17501,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -17396,7 +17511,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -17426,6 +17541,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -17584,7 +17700,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -17634,7 +17753,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -17644,7 +17763,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -17674,6 +17793,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -17778,7 +17898,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -17828,7 +17951,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -17838,7 +17961,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -17868,6 +17991,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -18004,7 +18128,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no + widely used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty @@ -18091,7 +18218,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -18141,7 +18271,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -18151,7 +18281,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -18181,6 +18311,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -18316,7 +18447,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no + widely used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty @@ -18423,7 +18557,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -18473,7 +18610,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -18483,7 +18620,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -18513,6 +18650,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -18695,7 +18833,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no + widely used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty @@ -18805,7 +18946,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -18855,7 +18999,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -18865,7 +19009,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -18895,6 +19039,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -19459,7 +19604,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -19509,7 +19657,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -19519,7 +19667,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -19549,6 +19697,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -19672,7 +19821,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no + widely used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty @@ -19722,7 +19874,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -19732,7 +19884,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -19762,6 +19914,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -19994,7 +20147,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -20044,7 +20200,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -20054,7 +20210,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -20084,6 +20240,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -20288,7 +20445,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no + widely used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty @@ -20338,7 +20498,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -20348,7 +20508,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -20378,6 +20538,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -20587,7 +20748,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -20637,7 +20801,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -20647,7 +20811,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -20677,6 +20841,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -20861,7 +21026,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -20911,7 +21079,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -20921,7 +21089,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -20951,6 +21119,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -21170,7 +21339,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -21220,7 +21392,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -21230,7 +21402,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -21260,6 +21432,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -21411,7 +21584,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -21461,7 +21637,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -21471,7 +21647,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -21501,6 +21677,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -21695,7 +21872,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -21745,7 +21925,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -21755,7 +21935,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -21785,6 +21965,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -22013,7 +22194,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -22063,7 +22247,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -22073,7 +22257,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -22103,6 +22287,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -22917,7 +23102,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -22967,7 +23155,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -22977,7 +23165,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -23007,6 +23195,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -23351,7 +23540,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -23401,7 +23593,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -23411,7 +23603,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -23441,6 +23633,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -23725,7 +23918,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -23775,7 +23971,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -23785,7 +23981,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -23815,6 +24011,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -23996,7 +24193,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no + widely used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty @@ -24046,7 +24246,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -24056,7 +24256,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -24086,6 +24286,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -24378,7 +24579,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -24428,7 +24632,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -24438,7 +24642,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -24468,6 +24672,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -24642,7 +24847,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no + widely used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty @@ -24692,7 +24900,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -24702,7 +24910,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -24732,6 +24940,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -25001,7 +25210,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -25051,7 +25263,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -25061,7 +25273,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -25091,6 +25303,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -25295,7 +25508,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are + no widely used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty @@ -25346,7 +25562,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -25356,7 +25572,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -25386,6 +25602,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -25661,7 +25878,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -25711,7 +25931,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -25721,7 +25941,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -25751,6 +25971,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -25913,7 +26134,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -25963,7 +26187,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -25973,7 +26197,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -26003,6 +26227,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -26128,7 +26353,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -26178,7 +26406,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -26188,7 +26416,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -26218,6 +26446,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -26335,7 +26564,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no + widely used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty @@ -26385,7 +26617,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -26395,7 +26627,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -26425,6 +26657,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -26717,7 +26950,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -26767,7 +27003,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -26777,7 +27013,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -26807,6 +27043,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -26979,7 +27216,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no + widely used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty @@ -27029,7 +27269,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -27039,7 +27279,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -27069,6 +27309,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -27338,7 +27579,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -27388,7 +27632,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -27398,7 +27642,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -27428,6 +27672,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -27627,7 +27872,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -27677,7 +27925,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -27687,7 +27935,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -27717,6 +27965,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -27946,7 +28195,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -27996,7 +28248,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -28006,7 +28258,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -28036,6 +28288,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -28227,7 +28480,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -28277,7 +28533,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -28287,7 +28543,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -28317,6 +28573,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -28538,7 +28795,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -28588,7 +28848,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -28598,7 +28858,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -28628,6 +28888,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -28806,7 +29067,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -28856,7 +29120,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -28866,7 +29130,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -28896,6 +29160,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -29039,7 +29304,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -29089,7 +29357,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -29099,7 +29367,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -29129,6 +29397,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -29273,7 +29542,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -29323,7 +29595,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -29333,7 +29605,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -29363,6 +29635,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -29497,7 +29770,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -29547,7 +29823,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -29557,7 +29833,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -29587,6 +29863,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -29786,7 +30063,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no + widely used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty @@ -29836,7 +30116,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -29846,7 +30126,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -29876,6 +30156,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -29991,7 +30272,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -30041,7 +30325,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -30051,7 +30335,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -30081,6 +30365,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -30202,7 +30487,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -30252,7 +30540,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -30262,7 +30550,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -30292,6 +30580,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -30575,7 +30864,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no + widely used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty @@ -30625,7 +30917,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -30635,7 +30927,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -30665,6 +30957,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -30831,7 +31124,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -30881,7 +31177,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -30891,7 +31187,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -30921,6 +31217,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -31073,7 +31370,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -31123,7 +31423,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -31133,7 +31433,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -31163,6 +31463,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -31341,7 +31642,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -31391,7 +31695,7 @@ paths: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -31401,7 +31705,7 @@ paths: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -31431,6 +31735,7 @@ paths: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -31789,7 +32094,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used type + server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might be @@ -31836,7 +32144,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -31846,7 +32154,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -31872,6 +32180,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -31993,7 +32302,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used + type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might @@ -32043,7 +32355,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -32053,7 +32365,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -32079,6 +32391,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -36904,7 +37217,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used type + server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might be @@ -36952,7 +37268,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -36962,7 +37278,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -36988,6 +37304,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -37121,7 +37438,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used + type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might @@ -37171,7 +37491,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -37181,7 +37501,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -37208,6 +37528,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -37302,7 +37623,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used type + server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might be @@ -37350,7 +37674,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -37360,7 +37684,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -37386,6 +37710,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -37475,7 +37800,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used + type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might @@ -37525,7 +37853,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -37535,7 +37863,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -37561,6 +37889,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -37670,7 +37999,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used type + server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might be @@ -37718,7 +38050,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -37728,7 +38060,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -37754,6 +38086,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -37843,7 +38176,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used + type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might @@ -37893,7 +38229,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -37903,7 +38239,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -37929,6 +38265,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -38041,7 +38378,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used type + server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might be @@ -38089,7 +38429,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -38099,7 +38439,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -38125,6 +38465,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -38225,7 +38566,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used type + server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might be @@ -38273,7 +38617,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -38283,7 +38627,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -38309,6 +38653,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -38413,7 +38758,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -38463,7 +38811,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -38473,7 +38821,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -38502,6 +38850,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -38630,7 +38979,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -38680,7 +39032,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -38690,7 +39042,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -38719,6 +39071,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -38843,7 +39196,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -38893,7 +39249,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -38903,7 +39259,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -38932,6 +39288,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -42581,7 +42938,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -42631,7 +42991,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -42641,7 +43001,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -42670,6 +43030,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -42880,7 +43241,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -42930,7 +43294,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -42940,7 +43304,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -42969,6 +43333,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -43238,7 +43603,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used type + server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might be @@ -43286,7 +43654,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -43296,7 +43664,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -43322,6 +43690,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -46259,7 +46628,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used + type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might @@ -46309,7 +46681,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -46319,7 +46691,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -46345,6 +46717,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -46453,7 +46826,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used type + server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might be @@ -46501,7 +46877,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -46511,7 +46887,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -46537,6 +46913,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -46634,7 +47011,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used type + server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might be @@ -46716,7 +47096,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used + type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might @@ -46805,7 +47188,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -46917,7 +47303,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -47313,7 +47702,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used + type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might @@ -47363,7 +47755,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -47373,7 +47765,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -47399,6 +47791,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -47837,7 +48230,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -47887,7 +48283,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -47897,7 +48293,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -47926,6 +48322,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -48119,7 +48516,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -48169,7 +48569,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -48179,7 +48579,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -48209,6 +48609,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -49266,7 +49667,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -49316,7 +49720,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -49326,7 +49730,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -49355,6 +49759,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -49867,7 +50272,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used + type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might @@ -49917,7 +50325,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -49927,7 +50335,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -49954,6 +50362,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -50205,7 +50614,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -50255,7 +50667,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -50265,7 +50677,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -50294,6 +50706,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -50649,7 +51062,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -50699,7 +51115,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -50709,7 +51125,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -50739,6 +51155,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -51334,7 +51751,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used + type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might @@ -51384,7 +51804,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -51394,7 +51814,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -51421,6 +51841,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -51752,7 +52173,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -51802,7 +52226,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -51812,7 +52236,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -51841,6 +52265,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -52450,7 +52875,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used type + server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might be @@ -52498,7 +52926,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -52508,7 +52936,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -52534,6 +52962,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -52885,7 +53314,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used + type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might @@ -52935,7 +53367,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -52945,7 +53377,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -52971,6 +53403,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -53159,7 +53592,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used type + server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might be @@ -53207,7 +53643,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -53217,7 +53653,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -53243,6 +53679,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -53696,7 +54133,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used + type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might @@ -53746,7 +54186,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -53756,7 +54196,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -53783,6 +54223,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -54648,7 +55089,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used + type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might @@ -54698,7 +55142,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -54708,7 +55152,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -54735,6 +55179,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -54972,7 +55417,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -55022,7 +55470,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -55032,7 +55480,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -55061,6 +55509,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -55433,7 +55882,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used type + server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might be @@ -55481,7 +55933,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -55491,7 +55943,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -55517,6 +55969,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -55720,7 +56173,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -55770,7 +56226,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -55780,7 +56236,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -55809,6 +56265,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -55937,7 +56394,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -55987,7 +56447,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -55997,7 +56457,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -56026,6 +56486,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -56148,7 +56609,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -56198,7 +56662,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -56208,7 +56672,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -56237,6 +56701,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -56332,7 +56797,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -56382,7 +56850,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -56392,7 +56860,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -56421,6 +56889,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -56536,7 +57005,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used + type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might @@ -56586,7 +57058,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -56596,7 +57068,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -56622,6 +57094,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -56737,7 +57210,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used + type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might @@ -56787,7 +57263,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -56797,7 +57273,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -56823,6 +57299,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular @@ -56913,7 +57390,10 @@ definitions: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely used + type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might @@ -56963,7 +57443,7 @@ definitions: foo = any.unpack(Foo.getDefaultInstance()); } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() @@ -56973,7 +57453,7 @@ definitions: any.Unpack(foo) ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) @@ -56999,6 +57479,7 @@ definitions: JSON + ==== The JSON representation of an `Any` value uses the regular