Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.52 KB

V1alpha1Reference.md

File metadata and controls

32 lines (23 loc) · 1.52 KB

V1alpha1Reference

Describes a resolved reference to a declaration.

Properties

Name Type Description Notes
name str The fully qualified name of the declaration. [optional]
overload_id List[str] For references to functions, this is a list of `Overload.overload_id` values which match according to typing rules. If the list has more than one element, overload resolution among the presented candidates must happen at runtime because of dynamic types. The type checker attempts to narrow down this list as much as possible. Empty if this is not a reference to a [Decl.FunctionDecl][google.api.expr.v1alpha1.Decl.FunctionDecl]. [optional]
value Constant [optional]

Example

from permify.models.v1alpha1_reference import V1alpha1Reference

# TODO update the JSON string below
json = "{}"
# create an instance of V1alpha1Reference from a JSON string
v1alpha1_reference_instance = V1alpha1Reference.from_json(json)
# print the JSON string representation of the object
print(V1alpha1Reference.to_json())

# convert the object into a dict
v1alpha1_reference_dict = v1alpha1_reference_instance.to_dict()
# create an instance of V1alpha1Reference from a dict
v1alpha1_reference_from_dict = V1alpha1Reference.from_dict(v1alpha1_reference_dict)

[Back to Model list] [Back to API list] [Back to README]