GoogleCloudDataplexV1DataDocumentationResultSchemaRelationshipSchemaPaths.fromJson constructor

GoogleCloudDataplexV1DataDocumentationResultSchemaRelationshipSchemaPaths.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1DataDocumentationResultSchemaRelationshipSchemaPaths.fromJson(
  core.Map json_,
) : this(
      paths: (json_['paths'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      tableFqn: json_['tableFqn'] as core.String?,
    );