def to_api_repr(self):
        """Build an API representation of this object.

        :rtype: dict
        :returns: A dictionary in the format used by the BigQuery API.
        """
        config = copy.deepcopy(self._properties)
        qe = config.get('qualifierEncoded')
        if qe is not None:
            config['qualifierEncoded'] = _bytes_to_json(qe)
        return config
    def to_api_repr(self):
        """Build an API representation of this object.

        :rtype: dict
        :returns: A dictionary in the format used by the BigQuery API.
        """
        config = copy.deepcopy(self._properties)
        qe = config.get('qualifierEncoded')
        if qe is not None:
            config['qualifierEncoded'] = _bytes_to_json(qe)
        return config
Beispiel #3
0
 def qualifier_encoded(self, value):
     self._properties["qualifierEncoded"] = _bytes_to_json(value)
Beispiel #4
0
    def _call_fut(self, value):
        from google.cloud.bigquery._helpers import _bytes_to_json

        return _bytes_to_json(value)
 def qualifier_encoded(self, value):
     self._properties["qualifierEncoded"] = _bytes_to_json(value)
Beispiel #6
0
 def _call_fut(self, value):
     from google.cloud.bigquery._helpers import _bytes_to_json
     return _bytes_to_json(value)