# coding: utf-8 # Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 from .input_location import InputLocation from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 from oci.decorators import init_model_state_from_kwargs @init_model_state_from_kwargs class ObjectListFileInputLocation(InputLocation): """ Use this locationType when passing the location of the object storage in the request (where the WAV file is stored). """ def __init__(self, **kwargs): """ Initializes a new ObjectListFileInputLocation object with values from keyword arguments. The default value of the :py:attr:`~oci.ai_speech.models.ObjectListFileInputLocation.location_type` attribute of this class is ``OBJECT_LIST_FILE_INPUT_LOCATION`` and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param location_type: The value to assign to the location_type property of this ObjectListFileInputLocation. Allowed values for this property are: "OBJECT_LIST_INLINE_INPUT_LOCATION", "OBJECT_LIST_FILE_INPUT_LOCATION" :type location_type: str :param object_location: The value to assign to the object_location property of this ObjectListFileInputLocation. :type object_location: oci.ai_speech.models.ObjectLocation """ self.swagger_types = { 'location_type': 'str', 'object_location': 'ObjectLocation' } self.attribute_map = { 'location_type': 'locationType', 'object_location': 'objectLocation' } self._location_type = None self._object_location = None self._location_type = 'OBJECT_LIST_FILE_INPUT_LOCATION' @property def object_location(self): """ **[Required]** Gets the object_location of this ObjectListFileInputLocation. :return: The object_location of this ObjectListFileInputLocation. :rtype: oci.ai_speech.models.ObjectLocation """ return self._object_location @object_location.setter def object_location(self, object_location): """ Sets the object_location of this ObjectListFileInputLocation. :param object_location: The object_location of this ObjectListFileInputLocation. :type: oci.ai_speech.models.ObjectLocation """ self._object_location = object_location def __repr__(self): return formatted_flat_dict(self) def __eq__(self, other): if other is None: return False return self.__dict__ == other.__dict__ def __ne__(self, other): return not self == other