@ -28,7 +28,7 @@ use Google\Protobuf\Internal\GPBUtil;
* if (any.is(Foo.class)) {
* if (any.is(Foo.class)) {
* foo = any.unpack(Foo.class);
* foo = any.unpack(Foo.class);
* }
* }
* Example 3: Pack and unpack a message in Python.
* Example 3: Pack and unpack a message in Python.
* foo = Foo(...)
* foo = Foo(...)
* any = Any()
* any = Any()
* any.Pack(foo)
* any.Pack(foo)
@ -36,7 +36,7 @@ use Google\Protobuf\Internal\GPBUtil;
* if any.Is(Foo.DESCRIPTOR):
* if any.Is(Foo.DESCRIPTOR):
* any.Unpack(foo)
* any.Unpack(foo)
* ...
* ...
* Example 4: Pack and unpack a message in Go
* Example 4: Pack and unpack a message in Go
* foo := & pb.Foo{...}
* foo := & pb.Foo{...}
* any, err := anypb.New(foo)
* any, err := anypb.New(foo)
* if err != nil {
* if err != nil {
@ -53,7 +53,6 @@ use Google\Protobuf\Internal\GPBUtil;
* in the type URL, for example "foo.bar.com/x/y.z" will yield type
* in the type URL, for example "foo.bar.com/x/y.z" will yield type
* name "y.z".
* name "y.z".
* JSON
* JSON
* ====
* The JSON representation of an `Any` value uses the regular
* The JSON representation of an `Any` value uses the regular
* representation of the deserialized, embedded message, with an
* representation of the deserialized, embedded message, with an
* additional field `@ type` which contains the type URL. Example:
* additional field `@ type` which contains the type URL. Example: