Current section

Files

Jump to
google_api_speech lib google_api speech v1 model recognition_audio.ex
Raw

lib/google_api/speech/v1/model/recognition_audio.ex

# Copyright 2017 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# NOTE: This class is auto generated by the swagger code generator program.
# https://github.com/swagger-api/swagger-codegen.git
# Do not edit the class manually.
defmodule GoogleApi.Speech.V1.Model.RecognitionAudio do
@moduledoc """
Contains audio data in the encoding specified in the `RecognitionConfig`. Either `content` or `uri` must be supplied. Supplying both or neither returns google.rpc.Code.INVALID_ARGUMENT. See [audio limits](https://cloud.google.com/speech/limits#content).
## Attributes
- content (String): The audio data bytes encoded as specified in `RecognitionConfig`. Note: as with all bytes fields, protobuffers use a pure binary representation, whereas JSON representations use base64. Defaults to: `null`.
- uri (String): URI that points to a file that contains audio data bytes as specified in `RecognitionConfig`. Currently, only Google Cloud Storage URIs are supported, which must be specified in the following format: `gs://bucket_name/object_name` (other URI formats return google.rpc.Code.INVALID_ARGUMENT). For more information, see [Request URIs](https://cloud.google.com/storage/docs/reference-uris). Defaults to: `null`.
"""
defstruct [
:"content",
:"uri"
]
end
defimpl Poison.Decoder, for: GoogleApi.Speech.V1.Model.RecognitionAudio do
def decode(value, _options) do
value
end
end
defimpl Poison.Encoder, for: GoogleApi.Speech.V1.Model.RecognitionAudio do
def encode(value, options) do
GoogleApi.Speech.V1.Deserializer.serialize_non_nil(value, options)
end
end