<?xml version="1.0"?>
<doc>
    <assembly>
        <name>GoogleApi</name>
    </assembly>
    <members>
        <member name="T:GoogleApi.Entities.BaseRequest">
            <summary>
            Base abstract class for requests.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.BaseRequest.BaseUrl">
            <summary>
            Base Url (abstract).
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.BaseRequest.Key">
            <summary>
            See <see cref="P:GoogleApi.Entities.Interfaces.IRequest.Key"/>.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.BaseRequest.ClientId">
            <summary>
            See <see cref="P:GoogleApi.Entities.Interfaces.IRequest.ClientId"/>.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.BaseRequest.GetUri">
            <summary>
            See <see cref="M:GoogleApi.Entities.Interfaces.IRequest.GetUri"/>.
            </summary>
            <returns>The <see cref="T:System.Uri"/>.</returns>
        </member>
        <member name="M:GoogleApi.Entities.BaseRequest.GetQueryStringParameters">
            <summary>
            See <see cref="M:GoogleApi.Entities.Interfaces.IRequest.GetQueryStringParameters"/>.
            </summary>
            <returns>The <see cref="T:System.Collections.Generic.IList`1"/> collection.</returns>
        </member>
        <member name="T:GoogleApi.Entities.BaseResponse">
            <summary>
            Base abstract class for responses.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.BaseResponse.RawJson">
            <summary>
            See <see cref="P:GoogleApi.Entities.Interfaces.IResponse.RawJson"/>.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.BaseResponse.RawQueryString">
            <summary>
            See <see cref="P:GoogleApi.Entities.Interfaces.IResponse.RawQueryString"/>.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.BaseResponse.Status">
            <summary>
            See <see cref="P:GoogleApi.Entities.Interfaces.IResponse.Status"/>.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.BaseResponse.ErrorMessage">
            <summary>
            See <see cref="P:GoogleApi.Entities.Interfaces.IResponse.ErrorMessage"/>.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.BaseResponse.HtmlAttributions">
            <summary>
            See <see cref="P:GoogleApi.Entities.Interfaces.IResponse.HtmlAttributions"/>.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.BaseResponseStream">
            <summary>
            Base Response Stream.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.BaseResponseStream.Buffer">
            <summary>
            Buffer.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.BaseResponseStream.Stream">
            <summary>
            Stream.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Common.Address">
            <summary>
            Address.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Common.Address.String">
            <summary>
            Address.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Common.Address.#ctor(System.String)">
            <summary>
            Constructor
            </summary>
            <param name="address">The address.</param>
        </member>
        <member name="M:GoogleApi.Entities.Common.Address.ToString">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Common.AddressComponent">
            <summary>
            Address Component.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Common.AddressComponent.ShortName">
            <summary>
            short_name is an abbreviated textual name for the address component, if available. For example, an address component for the state of Alaska may have a long_name of "Alaska" and a short_name of "AK" using the 2-letter postal abbreviation.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Common.AddressComponent.LongName">
            <summary>
            long_name is the full text description or name of the address component as returned by the Geocoder.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Common.AddressComponent.Types">
            <summary>
            types[] is an array indicating the type of the address component.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Common.Converters.StringBooleanConverter">
            <summary>
            String Boolean Json Converter.
            Converter for a <see cref="T:System.String"/> to a <see cref="T:System.Boolean"/>.
            If the string value is "1" then true, otherwise false.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Common.Converters.StringBooleanConverter.CanConvert(System.Type)">
            <inheritdoc />
        </member>
        <member name="M:GoogleApi.Entities.Common.Converters.StringBooleanConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
            <inheritdoc />
        </member>
        <member name="M:GoogleApi.Entities.Common.Converters.StringBooleanConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Common.Converters.StringEnumListConverter`1">
            <summary>
            String Enum List Json Converter.
            Converter for a comma separated <see cref="T:System.String"/> of items, to a <see cref="T:System.Collections.Generic.List`1"/>.
            </summary>
            <typeparam name="T"></typeparam>
        </member>
        <member name="M:GoogleApi.Entities.Common.Converters.StringEnumListConverter`1.CanConvert(System.Type)">
            <inheritdoc />
        </member>
        <member name="M:GoogleApi.Entities.Common.Converters.StringEnumListConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
            <inheritdoc />
        </member>
        <member name="M:GoogleApi.Entities.Common.Converters.StringEnumListConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Common.Converters.StringEnumOrDefaultConverter`1">
            <summary>
            Converts a <see cref="T:System.String"/> to an <see cref="T:System.Enum"/> of type <typeparamref name="T"/>.
            If no enum member is found, default(T) it returned.
            </summary>
            <typeparam name="T"><see cref="T:System.Enum"/> type.</typeparam>
        </member>
        <member name="M:GoogleApi.Entities.Common.Converters.StringEnumOrDefaultConverter`1.CanConvert(System.Type)">
            <inheritdoc />
        </member>
        <member name="M:GoogleApi.Entities.Common.Converters.StringEnumOrDefaultConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
            <inheritdoc />
        </member>
        <member name="M:GoogleApi.Entities.Common.Converters.StringEnumOrDefaultConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Common.Coordinate">
            <summary>
            Location.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Common.Coordinate.Latitude">
            <summary>
            Latitude.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Common.Coordinate.Longitude">
            <summary>
            Longitude.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Common.Coordinate.#ctor(System.Double,System.Double)">
            <summary>
            Contructor intializing a location using <paramref name="latitude"/> and <paramref name="longitude"/>.
            </summary>
            <param name="latitude"></param>
            <param name="longitude"></param>
        </member>
        <member name="M:GoogleApi.Entities.Common.Coordinate.ToString">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Common.Enums.AddressComponentType">
            <summary>
            Location types.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Uknown">
            <summary>
            Unknown is set when unmapped place location types is returned.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Street_Address">
            <summary>
            Indicates a precise street address.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Route">
            <summary>
            Indicates a named route (such as "US 101").
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Intersection">
            <summary>
            Indicates a major intersection, usually of two major roads.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Political">
            <summary>
            Indicates a political entity. Usually, this type indicates a polygon of some civil administration.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Country">
            <summary>
            Indicates the national political entity, and is typically the highest order type returned by the Geocoder.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Administrative_Area_Level_1">
            <summary>
            Indicates a first-order civil entity below the country level. Within the United States, these administrative levels are states.
            Not all nations exhibit these administrative levels.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Administrative_Area_Level_2">
            <summary>
            Indicates a second-order civil entity below the country level. Within the United States, these administrative levels are counties.
            Not all nations exhibit these administrative levels.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Administrative_Area_Level_3">
            <summary>
            Indicates a third-order civil entity below the country level. This type indicates a minor civil division.
            Not all nations exhibit these administrative levels.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Administrative_Area_Level_4">
            <summary>
            Indicates a fourth-order civil entity below the country level. This type indicates a minor civil division.
            Not all nations exhibit these administrative levels.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Administrative_Area_Level_5">
            <summary>
            Indicates a fifth-order civil entity below the country level. This type indicates a minor civil division.
            Not all nations exhibit these administrative levels.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Colloquial_Area">
            <summary>
            Indicates a commonly-used alternative name for the entity.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Locality">
            <summary>
            Indicates an incorporated city or town political entity.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Ward">
            <summary>
            Ward indicates a specific type of Japanese locality, to facilitate distinction between multiple locality components within a Japanese address.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Sublocality">
            <summary>
            indicates an first-order civil entity below a locality
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Sublocality_Level_1">
            <summary>
            indicates an first-order civil entity below a locality
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.SublocalityLevel2">
            <summary>
            indicates an second-order civil entity below a locality
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Sublocality_Level_3">
            <summary>
            indicates an third-order civil entity below a locality
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Sublocality_Level_4">
            <summary>
            indicates an first-order civil entity below a locality
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Sublocality_Level_5">
            <summary>
            indicates an first-order civil entity below a locality
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Neighborhood">
            <summary>
            Indicates a named neighborhood
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Premise">
            <summary>
            Indicates a named location, usually a building or collection of buildings with a common name
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Subpremise">
            <summary>
            Indicates a first-order entity below a named location, usually a singular building within a collection of buildings with a common name
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Postal_Code">
            <summary>
            Indicates a postal code as used to address postal mail within the country.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Natural_Feature">
            <summary>
            Indicates a prominent natural feature.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Airport">
            <summary>
            Indicates an airport.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Park">
            <summary>
            Indicates a named park.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Floor">
            <summary>
            Indicates the floor of a building address.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Establishment">
            <summary>
            Establishment typically indicates a place that has not yet been categorized.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Point_Of_Interest">
            <summary>
            Indicates a named point of interest. Typically, these "POI"s are prominent local entities that don't easily fit in another category such as "Empire State Building" or "Statue of Liberty."
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Parking">
            <summary>
            Parking indicates a parking lot or parking structure.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Post_Box">
            <summary>
            post_box indicates a specific postal box.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Postal_Town">
            <summary>
            postal_town indicates a grouping of geographic areas, such as locality and sublocality, used for mailing addresses in some countries.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Room">
            <summary>
            room indicates the room of a building address.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Street_Number">
            <summary>
            street_number indicates the precise street number.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Bus_Station">
            <summary>
            Indicate the location of a bus stop.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Train_Station">
            <summary>
            Indicate the location of a train stop.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Transit_Station">
            <summary>
            Indicate the location of a public transit stop.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Geocode">
            <summary>
            Geocode.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Postal_Code_Prefix">
            <summary>
            Postal code prefix.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Postal_Code_Suffix">
            <summary>
            Postal code suffix.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.AddressComponentType.Plus_Code">
            <summary>
            Indicates an encoded location reference, derived from latitude and longitude.
            <para/>
            Plus codes can be used as a replacement for street addresses in places where they do not exist
            (where buildings are not numbered or streets are not named).
            <para/>
            See <see href="https://plus.codes"/> for details.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Common.Enums.BusinessStatus">
            <summary>
            Business Status.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.BusinessStatus.Operational">
            <summary>
            Operational.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.BusinessStatus.Closed_Temporarily">
            <summary>
            Closed Temporarily.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.BusinessStatus.Closed_Permanently">
            <summary>
            Closed Permanently
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Common.Enums.Component">
            <summary>
            The components that can be filtered.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Component.Route">
            <summary>
            Route matches long or short name of a route.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Component.Locality">
            <summary>
            Locality matches against both locality and sublocality types. 
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Component.Administrative_Area">
            <summary>
            Administrative_area matches all the administrative_area levels. 
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Component.Postal_Code">
            <summary>
            Postal_code matches postal_code and postal_code_prefix.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Component.Country">
            <summary>
            Country matches a country name or a two letter ISO 3166-1 country code.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Common.Enums.Extensions.LanguageExtension">
            <summary>
            Language Extension methods.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Common.Enums.Extensions.LanguageExtension.ToCode(GoogleApi.Entities.Common.Enums.Language)">
            <summary>
            Gets the ISO-639-1 code for the specified <see cref="T:GoogleApi.Entities.Common.Enums.Language"/>.
            </summary>
            <param name="language">The <see cref="T:GoogleApi.Entities.Common.Enums.Language"/>.</param>
            <returns>The ISO-639-1 code matching the passed <paramref name="language"/>.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Common.Enums.Extensions.StringExtension">
            <summary>
            String Extensions.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Common.Enums.Extensions.StringExtension.FromCode(System.String)">
            <summary>
            Gets the <see cref="T:GoogleApi.Entities.Common.Enums.Language"/> for the specified ISO-639-1 code.
            </summary>
            <param name="language">The ISO-639-1 code.</param>
            <returns>The <see cref="T:GoogleApi.Entities.Common.Enums.Language"/>.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Common.Enums.Language">
            <summary>
            Supported Languages.
            By default the API will attempt to load the most appropriate language based on the users location or browser settings. 
            Some APIs allow you to explicitly set a language when you make a request. 
            https://developers.google.com/maps/faq#languagesupport
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Afrikaans">
            <summary>
            Afrikaans
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Albanian">
            <summary>
            Albanian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Amharic">
            <summary>
            Amharic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Arabic">
            <summary>
            Arabic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Armenian">
            <summary>
            Armenian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Azerbaijani">
            <summary>
            Azerbaijani
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Basque">
            <summary>
            Basque
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Belarusian">
            <summary>
            Belarusian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Bengali">
            <summary>
            Bengali
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Bosnian">
            <summary>
            Bosnian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Bulgarian">
            <summary>
            Bulgarian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Burmese">
            <summary>
            Burmese
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Catalan">
            <summary>
            Catalan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Chinese">
            <summary>
            Chinese
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.ChineseSimplified">
            <summary>
            Chinese Simplified
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.ChineseHongKong">
            <summary>
            Chinese Hong Kong
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.ChineseTraditional">
            <summary>
            Chinese Traditional
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Croatian">
            <summary>
            Croatian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Czech">
            <summary>
            Czech
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Danish">
            <summary>
            Danish
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Dutch">
            <summary>
            Dutch
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.English">
            <summary>
            English
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.EnglishAustralian">
            <summary>
            English (Australian)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.EnglishGreatBritain">
            <summary>
            English (Great Britain)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Estonian">
            <summary>
            Estonian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Farsi">
            <summary>
            Farsi
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Finnish">
            <summary>
            Finnish
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Filipino">
            <summary>
            Filipino
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.French">
            <summary>
            French
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.FrenchCanada">
            <summary>
            French Canada
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Galician">
            <summary>
            Galician
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Georgian">
            <summary>
            Georgian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.German">
            <summary>
            German
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Greek">
            <summary>
            Greek
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Gujarati">
            <summary>
            Gujarati
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Hebrew">
            <summary>
            Hebrew
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Hindi">
            <summary>
            Hindi
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Hungarian">
            <summary>
            Hungarian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Icelandic">
            <summary>
            Icelandic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Indonesian">
            <summary>
            Indonesian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Italian">
            <summary>
            Italian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Japanese">
            <summary>
            Japanese
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Kannada">
            <summary>
            Kannada
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Kazakh">
            <summary>
            Kazakh
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Khmer">
            <summary>
            Khmer
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Korean">
            <summary>
            Korean
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Kyrgyz">
            <summary>
            Kyrgyz
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Lao">
            <summary>
            Lao
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Latvian">
            <summary>
            Latvian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Lithuanian">
            <summary>
            Lithuanian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Macedonian">
            <summary>
            Macedonian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Malay">
            <summary>
            Malay
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Malayalam">
            <summary>
            Malayalam
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Marathi">
            <summary>
            Marathi
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Mongolian">
            <summary>
            Mongolian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Nepali">
            <summary>
            Nepali
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Norwegian">
            <summary>
            Norwegian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Polish">
            <summary>
            Polish
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Portuguese">
            <summary>
            Portuguese
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.PortugueseBrazil">
            <summary>
            Portuguese (Brazil)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.PortuguesePortugal">
            <summary>
            Portuguese (Portugal)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Punjabi">
            <summary>
            Punjabi
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Romanian">
            <summary>
            Romanian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Russian">
            <summary>
            Russian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Serbian">
            <summary>
            Serbian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Sinhalese">
            <summary>
            Sinhalese
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Slovak">
            <summary>
            Slovak
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Slovenian">
            <summary>
            Slovenian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Spanish">
            <summary>
            Spanish
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.SpanishLatinAmerica">
            <summary>
            Spanish Latin America
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Swahili">
            <summary>
            Swahili
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Swedish">
            <summary>
            Swedish
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Tamil">
            <summary>
            Tamil
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Telugu">
            <summary>
            Telugu
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Thai">
            <summary>
            Thai
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Turkish">
            <summary>
            Turkish
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Ukrainian">
            <summary>
            Ukrainian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Urdu">
            <summary>
            Urdu
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Uzbek">
            <summary>
            Uzbek
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Vietnamese">
            <summary>
            Vietnamese
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Language.Zulu">
            <summary>
            Zulu
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Common.Enums.PlaceLocationType">
            <summary>
            Place Location Types
            https://developers.google.com/places/supported_types#table1
            https://developers.google.com/places/supported_types#table2
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Uknown">
            <summary>
            Unknown is set when unmapped place location types is returned.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Geocode">
            <summary>
            Geocode instructs the Place Autocomplete service to return only geocoding results,
            rather than business results. Generally, you use this request to disambiguate results where the location specified may be indeterminate.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Street_Address">
            <summary>
            Indicates a precise street address.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Route">
            <summary>
            Indicates a named route (such as "US 101").
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Intersection">
            <summary>
            Indicates a major intersection, usually of two major roads.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Political">
            <summary>
            Indicates a political entity. Usually, this type indicates a polygon of some civil administration.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Country">
            <summary>
            Indicates the national political entity, and is typically the highest order type returned by the Geocoder.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Administrative_Area_Level_1">
            <summary>
            Indicates a first-order civil entity below the country level. Within the United States,
            these administrative levels are states. Not all nations exhibit these administrative levels.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Administrative_Area_Level_2">
            <summary>
            Indicates a second-order civil entity below the country level. Within the United States,
            these administrative levels are counties. Not all nations exhibit these administrative levels.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Administrative_Area_Level_3">
            <summary>
            Indicates a third-order civil entity below the country level. This type indicates a minor civil division.
            Not all nations exhibit these administrative levels.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Administrative_Area_Level_4">
            <summary>
            Indicates a fourth-order civil entity below the country level. This type indicates a minor civil division.
            Not all nations exhibit these administrative levels.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Administrative_Area_Level_5">
            <summary>
            Indicates a fifth-order civil entity below the country level. This type indicates a minor civil division.
            Not all nations exhibit these administrative levels.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Colloquial_Area">
            <summary>
            Indicates a commonly-used alternative name for the entity.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Locality">
            <summary>
            Indicates an incorporated city or town political entity.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Sublocality">
            <summary>
            locality.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Sublocality_Level_1">
            <summary>
            indicates an first-order civil entity below a locality.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Sublocality_Level_2">
            <summary>
            indicates an second-order civil entity below a locality.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Sublocality_Level_3">
            <summary>
            indicates an third-order civil entity below a locality.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Sublocality_Level_4">
            <summary>
            indicates an first-order civil entity below a locality.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Sublocality_Level_5">
            <summary>
            indicates an first-order civil entity below a locality.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Neighborhood">
            <summary>
            Indicates a named neighborhood
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Premise">
            <summary>
            Indicates a named location, usually a building or collection of buildings with a common name.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Subpremise">
            <summary>
            Indicates a first-order entity below a named location, usually a singular building within a collection of buildings with a common name.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Postal_Code">
            <summary>
            Indicates a postal code as used to address postal mail within the country.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Postal_Code_Prefix">
            <summary>
            Indicates a postal code prefix.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Postal_Code_Suffix">
            <summary>
            Indicates a postal code suffix.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Natural_Feature">
            <summary>
            Indicates a prominent natural feature.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Point_Of_Interest">
            <summary>
            Indicates a named point of interest. Typically, these "POI"s are prominent local entities that don't easily fit in another category such as "Empire State Building" or "Statue of Liberty."
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Floor">
            <summary>
            Indicates the floor of a building address.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Post_Box">
            <summary>
            post_box indicates a specific postal box.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Postal_Town">
            <summary>
            postal_town indicates a grouping of geographic areas, such as locality and sublocality, used for mailing addresses in some countries.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Room">
            <summary>
            room indicates the room of a building address.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Street_Number">
            <summary>
            street_number indicates the precise street number.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Transit_Station">
            <summary>
            Indicate the location of a public transit stop.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Accounting">
            <summary>
            Accounting.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Airport">
            <summary>
            Airport.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Amusement_Park">
            <summary>
            Amusement Park.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Aquarium">
            <summary>
            Aquarium.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Art_Gallery">
            <summary>
            Art Gallery.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Atm">
            <summary>
            Atm.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Bakery">
            <summary>
            Bakery.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Bank">
            <summary>
            Bank.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Bar">
            <summary>
            Bar.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Beauty_Salon">
            <summary>
            Beauty Salon.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Bicycle_Store">
            <summary>
            Bicycle Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Book_Store">
            <summary>
            Book Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Bowling_Alley">
            <summary>
            Bowling Alley.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Bus_Station">
            <summary>
            Bus Station.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Cafe">
            <summary>
            Cafe.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Campground">
            <summary>
            Campground.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Car_Dealer">
            <summary>
            Car Dealer.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Car_Rental">
            <summary>
            Car Rental.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Car_Repair">
            <summary>
            Car Repair.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Car_Wash">
            <summary>
            Car Wash.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Casino">
            <summary>
            Casino.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Cemetery">
            <summary>
            Cemetery.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Church">
            <summary>
            Church.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.City_Hall">
            <summary>
            City Hall.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Clothing_Store">
            <summary>
            Clothing Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Convenience_Store">
            <summary>
            Convenience Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Courthouse">
            <summary>
            Courthouse.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Dentist">
            <summary>
            Dentist.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Department_Store">
            <summary>
            Department Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Doctor">
            <summary>
            Doctor.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Electrician">
            <summary>
            Electrician.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Electronics_Store">
            <summary>
            Electronics Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Embassy">
            <summary>
            Embassy.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Establishment">
            <summary>
            Establishment.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Finance">
            <summary>
            Finance.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Fire_Station">
            <summary>
            Fire Station.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Florist">
            <summary>
            Florist.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Food">
            <summary>
            Food.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Funeral_Home">
            <summary>
            Funeral Home.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Furniture_Store">
            <summary>
            Furniture Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Gas_Station">
            <summary>
            Gas Station.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.General_Contractor">
            <summary>
            General Contractor.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Supermarket">
            <summary>
            Supermarket.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Grocery_Or_Supermarket">
            <summary>
            Grocery Or Supermarket.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Gym">
            <summary>
            Gym.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Hair_Care">
            <summary>
            Hair Care.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Hardware_Store">
            <summary>
            Hardware Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Health">
            <summary>
            Health.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Hindu_Temple">
            <summary>
            Hindu Temple.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Home_Goods_Store">
            <summary>
            Home Goods Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Hospital">
            <summary>
            Hospital.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Insurance_Agency">
            <summary>
            Insurance Agency.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Jewelry_Store">
            <summary>
            Jewelry Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Laundry">
            <summary>
            Laundry.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Lawyer">
            <summary>
            Lawyer.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Library">
            <summary>
            Library.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Liquor_Store">
            <summary>
            Liquor Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Local_Government_Office">
            <summary>
            Local Government Office.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Locksmith">
            <summary>
            Locksmith.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Lodging">
            <summary>
            Lodging.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Meal_Delivery">
            <summary>
            Meal Delivery.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Meal_Takeaway">
             <summary>
            
             </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Mosque">
            <summary>
            Mosque.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Movie_Rental">
            <summary>
            Movie Rental.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Movie_Theater">
            <summary>
            Movie Theater.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Moving_Company">
            <summary>
            Moving Company.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Museum">
            <summary>
            Museum.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Night_Club">
            <summary>
            Night Club.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Painter">
            <summary>
            Painter.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Park">
            <summary>
            Park.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Parking">
            <summary>
            Parking.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Pet_Store">
            <summary>
            Pet Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Pharmacy">
            <summary>
            Pharmacy.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Physiotherapist">
            <summary>
            Physiotherapist.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Place_Of_Worship">
            <summary>
            Place Of Worship.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Plumber">
            <summary>
            Plumber.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Police">
            <summary>
            Police.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.PostOffice">
            <summary>
            Post Office.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Real_Estate_Agency">
            <summary>
            Real Estate Agency.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Restaurant">
            <summary>
            Restaurant.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Roofing_Contractor">
            <summary>
            Roofing Contractor.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Rv_Park">
            <summary>
            Rv Park.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.School">
            <summary>
            School.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Shoe_Store">
             <summary>
            
             </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Shopping_Mall">
            <summary>
            Shopping Mall.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Spa">
            <summary>
            Spa.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Stadium">
            <summary>
            Stadium.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Storage">
            <summary>
            Storage.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Store">
            <summary>
            Store-
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Subway_Station">
            <summary>
            Subway Station.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Synagogue">
            <summary>
            Synagogue.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Tourist_Attracton">
            <summary>
            Tourist Attracton.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Taxi_Stand">
            <summary>
            Taxi Stand.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Train_Station">
            <summary>
            Train Station.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Travel_Agency">
            <summary>
            Travel Agency.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.University">
            <summary>
            University.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Veterinary_Care">
            <summary>
            VeterinaryCare.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Zoo">
            <summary>
            Zoo.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.PlaceLocationType.Plus_Code">
            <summary>
            Indicates an encoded location reference, derived from latitude and longitude.
            <para/>
            Plus codes can be used as a replacement for street addresses in places where they do not exist
            (where buildings are not numbered or streets are not named).
            <para/>
            See <see href="https://plus.codes"/> for details.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Common.Enums.Status">
            <summary>
            Response status.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Status.Undefined">
            <summary>
            Set when deserialization fails (default).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Status.Ok">
            <summary>
            Indicates that no errors occurred; the place was successfully detected and at least one result was returned.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Status.ZeroResults">
            <summary>
            Indicates that the request was successful but returned no results. This may occur if the search was passed a latlng in a remote location.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Status.OverQueryLimit">
            <summary>
            Indicates that you are over your quota.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Status.RequestDenied">
            <summary>
            Indicates that your request was denied.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Status.InvalidRequest">
            <summary>
            Indicates that the query parameter (location or radius) is missing.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Status.MaxElementsExceeded">
            <summary>
            Indicates the allowed amount of elements has been exceeeded.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Status.MaxWaypointsExceeded">
            <summary>
            Indicates that too many waypointss were provided in the request The maximum allowed waypoints is 8, plus the origin, and destination. ( Google Maps Premier customers may contain requests with up to 23 waypoints.)	
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Status.MaxRouteLengthExceeded">
            <summary>
            Indicates the requested route is too long and cannot be processed. This error occurs when more complex directions are returned. Try reducing the number of waypoints, turns, or instructions.	
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Status.NotFound">
            <summary>
            Indicates at least one of the locations specified in the requests's origin, destination, or waypoints could not be geocoded.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Status.UnknownError">
            <summary>
            Indicates the request could not be processed due to a server error. The request may succeed if you try again.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Status.HttpError">
            <summary>
            Indicates the request resulted in a Http error code.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Status.InvalidKey">
            <summary>
            Indicates the request has none or an invalid key set.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Status.OverDailyLimit">
            <summary>
            Indicates any of the following:
            The API key is missing or invalid.
            Billing has not been enabled on your account.
            A self-imposed usage cap has been exceeded.
            The provided method of payment is no longer valid (for example, a credit card has expired).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Enums.Status.MaxDimensionsExceeded">
            <summary>
            Indicates that the number of origins or destinations exceeds the per-query limit.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Common.Extensions.DateTimeExtension">
            <summary>
            DateTime extensions.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Common.Extensions.DateTimeExtension.epoch">
            <summary>
            Unix Epoch value.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Common.Extensions.DateTimeExtension.DateTimeToUnixTimestamp(System.DateTime)">
            <summary>
            Converts a DateTime to a Unix timestamp.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Common.Extensions.EnumExtension">
            <summary>
            Enum extensions.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Common.Extensions.EnumExtension.ToEnumString``1(``0,System.Char)">
            <summary>
            Converts a <see cref="T:System.Enum"/> value to string. 
            If enum is a <see cref="T:System.FlagsAttribute"/>, values are separated by the passed <paramref name="delimeter"/>.
            </summary>
            <typeparam name="T">The <see cref="T:System.Enum"/> type.</typeparam>
            <param name="enum">The <see cref="T:System.Enum"/> to convert of <typeparamref name="T"/>.</param>
            <param name="delimeter">The separator inserted between each value if the <see cref="T:System.Enum"/>.</param>
            <returns>A <see cref="T:System.String"/> representation of the enum value.</returns>
        </member>
        <member name="M:GoogleApi.Entities.Common.Extensions.EnumExtension.ToEnumMemberString``1(``0)">
            <summary>
            Converts the enum into a string, by getting the <see cref="T:System.Runtime.Serialization.EnumMemberAttribute"/> value.
            </summary>
            <typeparam name="T">The <see cref="T:System.Enum"/> type.</typeparam>
            <param name="enum">The enum value.</param>
            <returns>A <see cref="T:System.String"/> representation of the enum value.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Common.Extensions.ListExtension">
            <summary>
            List Extensions.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Common.Extensions.ListExtension.Add(System.Collections.Generic.IList{System.Collections.Generic.KeyValuePair{System.String,System.String}},System.String,System.String)">
            <summary>
            Adds a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to generic <see cref="T:System.Collections.Generic.List`1"/>.
            </summary>
            <param name="list">The <see cref="T:System.Collections.Generic.List`1"/> to add a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to.</param>
            <param name="key">The <see cref="T:System.String"/> key.</param>
            <param name="value">The <see cref="T:System.String"/> value.</param>
        </member>
        <member name="T:GoogleApi.Entities.Common.Geometry">
            <summary>
            Geometry.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Common.Geometry.Location">
            <summary>
            Location contains the geocoded latitude,longitude value. 
            For normal address lookups, this field is typically the most important.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Common.Geometry.Bounds">
            <summary>
            Bounds (optionally returned) stores the bounding box which can fully contain the returned result. 
            Note that these bounds may not match the recommended viewport. (For example, San Francisco includes the Farallon islands, 
            which are technically part of the city, but probably should not be returned in the viewport.)
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Common.Geometry.ViewPort">
            <summary>
            Viewport contains the recommended viewport for displaying the returned result, specified as two latitude,longitude values defining 
            the southwest and northeast corner of the viewport bounding box. 
            Generally the viewport is used to frame a result when displaying it to a user.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Common.Geometry.LocationType">
            <summary>
            Location type stores additional data about the specified location. 
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Common.PlusCode">
            <summary>
            Plus Code.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Common.PlusCode.GlobalCode">
            <summary>
            Global Code.
            A 4 character area code.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Common.PlusCode.LocalCode">
            <summary>
            Global Code.
            A 6 character or longer local code with an explicit location (CWC8+R9, Mountain View, CA, USA).
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Common.PlusCode.#ctor(System.String,System.String)">
            <summary>
            Constructor.
            </summary>
            <param name="globalCode">The global code.</param>
            <param name="localCode">The local code (optional).</param>
        </member>
        <member name="M:GoogleApi.Entities.Common.PlusCode.ToString">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Common.ViewPort">
            <summary>
            viewport contains the recommended viewport for displaying the returned result, specified as two latitude,longitude values defining 
            the southwest and northeast corner of the viewport bounding box. 
            Generally the viewport is used to frame a result when displaying it to a user.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Common.ViewPort.SouthWest">
            <summary>
            South West.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Common.ViewPort.NorthEast">
            <summary>
            North East.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Common.ViewPort.#ctor(GoogleApi.Entities.Common.Coordinate,GoogleApi.Entities.Common.Coordinate)">
            <summary>
            Constructor.
            </summary>
            <param name="northEast">The <see cref="T:GoogleApi.Entities.Common.Coordinate"/>.</param>
            <param name="southWest">The <see cref="T:GoogleApi.Entities.Common.Coordinate"/>.</param>
        </member>
        <member name="M:GoogleApi.Entities.Common.ViewPort.ToString">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Interfaces.IRequest">
            <summary>
            Base interface for requests.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Interfaces.IRequest.Key">
            <summary>
            Your application's API key (required). 
            This key identifies your application for purposes of quota management and so that Places added from your application are made immediately available to your app. 
            Visit the APIs Console to create an API Project and obtain your key.
            https://developers.google.com/maps/api-key-best-practices
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Interfaces.IRequest.ClientId">
            <summary>
            The client ID provided to you by Google Enterprise Support, or null to disable URL signing. 
            All client IDs begin with a "gme-" prefix.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Interfaces.IRequest.GetUri">
            <summary>
            Returns the Uri for the request.
            </summary>
            <returns>The <see cref="T:System.Uri"/>.</returns>
        </member>
        <member name="M:GoogleApi.Entities.Interfaces.IRequest.GetQueryStringParameters">
            <summary>
            Get the query string collection of aggregated from all parameters added to the request.
            </summary>
            <returns>The <see cref="T:System.Collections.Generic.IList`1"/> collection.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Interfaces.IRequestJson">
            <summary>
            Indicates the Request is a Json payload request, using http post method.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Interfaces.IRequestQueryString">
            <summary>
            Indicates the Request is a Query string requst, 
            where parameters are passed through the querystring of the uri.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Interfaces.IResponse">
            <summary>
            Base interface for responses.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Interfaces.IResponse.RawJson">
            <summary>
            Raw json of the response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Interfaces.IResponse.RawQueryString">
            <summary>
            Raw querystring of the request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Interfaces.IResponse.Status">
            <summary>
            The status returned with the response.
            <see cref="F:GoogleApi.Entities.Common.Enums.Status.Ok"/> indicates success.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Interfaces.IResponse.ErrorMessage">
            <summary>
            When the status code is other than 'Ok', there may be an additional error_message field within the response object. 
            This field contains more detailed information about the reasons behind the given status code.
            Note: This field is not guaranteed to be always present, and its content is subject to change.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Interfaces.IResponse.HtmlAttributions">
            <summary>
            html_attributions contain a set of attributions which must be displayed to the user.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.BaseMapsChannelRequest">
            <summary>
            Base abstract class for maps requests with channel property.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.BaseMapsChannelRequest.Channel">
            <summary>
            To track usage across different applications using the same client ID, you can use the channel parameter with your API requests. 
            By specifying different channel values for different aspects of your application, you can determine precisely how your application is used.
            For example, your external website might access an API using a channel set to customer, while your internal marketing department might 
            use a channel set to mkting. Your reports will break down usage of the API by those channel values.
            Make sure the channel value in your requests meets the following requirements:
            Must be an ASCII alphanumeric string.
            Can include a period(.), underscore(_) and hyphen(-) character.
            Is case-insensitive: Upper-case and mixed-case channel parameters are merged into their lower-case equivalent.For example, 
            usage on the CUSTOMER channel will be combined with the usage of the customer channel.
            Must be a static and assigned per application instance(it can't be generated dynamically). 
            For example, you can't use channel values to track individual users.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.BaseMapsChannelRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.BaseMapsRequest">
            <summary>
            Base abstract class for maps requests.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.BaseMapsRequest.BaseUrl">
            <inheritdoc />
        </member>
        <member name="M:GoogleApi.Entities.Maps.BaseMapsRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.Common.CoordinateEx">
            <summary>
            CoordinateEx.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.CoordinateEx.Heading">
            <summary>
            Heading.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.CoordinateEx.UseSideOfRoad">
            <summary>
            Use Side Of Road.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Common.CoordinateEx.#ctor(System.Double,System.Double)">
            <summary>
            
            </summary>
            <param name="latitude"></param>
            <param name="longitude"></param>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Common.CoordinateEx.ToString">
            <summary>
            Overrdden ToString method for default conversion to Google compatible string.
            If <see cref="P:GoogleApi.Entities.Maps.Common.CoordinateEx.UseSideOfRoad"/> is true, 'side_of_road:' will prepended to the location.
            If <see cref="P:GoogleApi.Entities.Maps.Common.CoordinateEx.UseSideOfRoad"/> is true and <see cref="P:GoogleApi.Entities.Maps.Common.CoordinateEx.Heading"/> is not null, the heading will be prepended to the location.
            </summary>
            <returns>The location string.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Common.Distance">
            <summary>
            Distance.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.Distance.Value">
            <summary>
            Value indicates the distance in meters
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.Distance.Text">
            <summary>
            Text contains a human-readable representation of the distance, displayed in units as used at the origin, in the language specified in the request. 
            (For example, miles and feet will be used for any origin within the United States.) Note that regardless of what unit system is displayed as text, 
            the distance.value field always contains a value expressed in meters.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Common.Duration">
            <summary>
            Duration indicates the total duration of this leg
            These fields may be absent if the duration is unknown.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.Duration.Text">
            <summary>
            Text contains a human-readable representation of the duration.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.Duration.Value">
            <summary>
            Value in seconds.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.Duration.TimeZone">
            <summary>
            Contains the time zone of this station. 
            The value is the name of the time zone as defined in the IANA Time Zone Database, e.g. "America/New_York".
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Common.Enums.AvoidWay">
            <summary>
            Avoid Way restrictions.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.AvoidWay.Nothing">
            <summary>
            Nothing
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.AvoidWay.Tolls">
            <summary>
            Avoid tolls
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.AvoidWay.Highways">
            <summary>
            Avoid highways
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.AvoidWay.Indoor">
            <summary>
            Avoid indoor
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.AvoidWay.Ferries">
            <summary>
            Avoid ferries
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Common.Enums.TrafficModel">
            <summary>
            Traffic Model.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.TrafficModel.Best_Guess">
            <summary>
            Best guess (default), indicates that the returned duration_in_traffic should be the best estimate of travel time 
            given what is known about both historical traffic conditions and live traffic.
            Live traffic becomes more important the closer the departure_time is to now.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.TrafficModel.Pessimistic">
            <summary>
            Pessimistic, indicates that the returned duration_in_traffic should be longer than the actual travel time on most days,
            though occasional days with particularly bad traffic conditions may exceed this value.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.TrafficModel.Optimistic">
            <summary>
            Optimistic, indicates that the returned duration_in_traffic should be shorter than the actual travel time on most days, 
            though occasional days with particularly good traffic conditions may be faster than this value.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Common.Enums.TransitMode">
            <summary>
            Transit mode.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.TransitMode.Subway">
            <summary>
            Indicates that the calculated route should prefer travel by subway.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.TransitMode.Train">
            <summary>
            Indicates that the calculated route should prefer travel by train.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.TransitMode.Tram">
            <summary>
            Indicates that the calculated route should prefer travel by tram and light rail.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.TransitMode.Bus">
            <summary>
            Indicates that the calculated route should prefer travel by bus.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.TransitMode.Rail">
            <summary>
            Indicates that the calculated route should prefer travel by train, tram, light rail, and subway. 
            This is equivalent to transit_mode=train|tram|subway.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Common.Enums.TransitRoutingPreference">
            <summary>
            Transit Routing Preference.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.TransitRoutingPreference.Nothing">
            <summary>
            No TransitRoutingPreference.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.TransitRoutingPreference.Less_Walking">
            <summary>
            Indicates that the calculated route should prefer limited amounts of walking.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.TransitRoutingPreference.Fewer_Transfers">
            <summary>
            Indicates that the calculated route should prefer a limited number of transfers.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Common.Enums.TravelMode">
            <summary>
            Travel mode.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.TravelMode.Driving">
            <summary>
            Indicates distance calculation using the road network.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.TravelMode.Walking">
            <summary>
            Requests distance calculation for walking via pedestrian paths and sidewalks (where available).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.TravelMode.Bicycling">
            <summary>
            Requests distance calculation for bicycling via bicycle paths and preferred streets (where available).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.TravelMode.Transit">
            <summary>
            transit requests distance calculation via public transit routes (where available). 
            This value may only be specified if the request includes an API key or a Google Maps API for Work client ID. 
            If you set the mode to transit you can optionally specify either a departure_time or an arrival_time. 
            If neither time is specified, the departure_time defaults to now (that is, the departure time defaults to the current time). 
            You can also optionally include a transit_mode and/or a transit_routing_preference.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Common.Enums.Units">
            <summary>
            Units.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.Units.Metric">
            <summary>
            Metric (default) returns distances in kilometers and meters.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Common.Enums.Units.Imperial">
            <summary>
            Imperial returns distances in miles and feet.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Common.Error">
            <summary>
            Error.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.Error.Code">
            <summary>
            This is the same as the HTTP status of the response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.Error.ErrorMessage">
            <summary>
            A short description of the error.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.Error.Errors">
            <summary>
            Collection of errors.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Common.ErrorDetail">
            <summary>
            Error Detail.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.ErrorDetail.Doamin">
            <summary>
            The domain assocaited with the error.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.ErrorDetail.Reason">
            <summary>
            The error reason.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.ErrorDetail.ErrorMessage">
            <summary>
            A short description of the error.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Common.Fare">
            <summary>
            Fare.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.Fare.Currency">
            <summary>
             An ISO 4217 currency code indicating the currency that the amount is expressed in.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.Fare.Value">
            <summary>
            The total fare amount, in the currency.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.Fare.Text">
            <summary>
            The total fare amount, formatted in the requested language.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Common.Location">
            <summary>
            Location.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.Location.String">
            <summary>
            Location String.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Common.Location.#ctor(GoogleApi.Entities.Common.Address)">
            <summary>
            
            </summary>
            <param name="address"></param>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Common.Location.#ctor(GoogleApi.Entities.Common.Coordinate)">
            <summary>
            
            </summary>
            <param name="coordinate"></param>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Common.Location.ToString">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.Common.LocationEx">
            <summary>
            Location Ex.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.LocationEx.String">
            <summary>
            Location String.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Common.LocationEx.#ctor(GoogleApi.Entities.Maps.Common.Place)">
            <summary>
            Constructor.
            </summary>
            <param name="place">The <see cref="T:GoogleApi.Entities.Maps.Common.Place"/>.</param>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Common.LocationEx.#ctor(GoogleApi.Entities.Common.Address)">
            <summary>
            Constructor.
            </summary>
            <param name="address">The <see cref="T:GoogleApi.Entities.Common.Address"/>.</param>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Common.LocationEx.#ctor(GoogleApi.Entities.Common.PlusCode)">
            <summary>
            Constructor.
            </summary>
            <param name="plusCode">The <see cref="T:GoogleApi.Entities.Common.PlusCode"/>.</param>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Common.LocationEx.#ctor(GoogleApi.Entities.Maps.Common.CoordinateEx)">
            <summary>
            Constructor.
            </summary>
            <param name="coordinate">The <see cref="T:GoogleApi.Entities.Maps.Common.CoordinateEx"/>.</param>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Common.LocationEx.ToString">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.Common.MapSize">
            <summary>
            Map Size.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.MapSize.Width">
            <summary>
            Width.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.MapSize.Height">
            <summary>
            Height.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Common.MapSize.#ctor(System.Int32,System.Int32)">
            <summary>
            Constructor.
            </summary>
            <param name="width">The width.</param>
            <param name="height">The height.</param>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Common.MapSize.ToString">
            <summary>
            Returns the <see cref="P:GoogleApi.Entities.Maps.Common.MapSize.Width"/> x <see cref="P:GoogleApi.Entities.Maps.Common.MapSize.Height"/>. 
            </summary>
            <returns>The string representation.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Common.Place">
            <summary>
            Place.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Common.Place.Id">
            <summary>
            The place Id.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Common.Place.#ctor(System.String)">
            <summary>
            Constructor.
            </summary>
            <param name="placeId">The place id.</param>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Common.Place.ToString">
            <inheritdoc />
        </member>
        <member name="M:GoogleApi.Entities.Maps.Common.Place.ToString(System.String)">
            <summary>
            Tostring with added prefix.
            "{prefix}:{placeid}"
            </summary>
            <param name="prefix">The prefix.</param>
            <returns>The prefixed placeid.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest">
            <summary>
            Directions Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest.BaseUrl">
            <inheritdoc />
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest.Origin">
            <summary>
            origins — The starting point for calculating travel distance and time. 
            You can supply one or more locations separated by the pipe character (|), in the form of an address, latitude/longitude coordinates, or a placeID.
            If you pass an address, the service geocodes the string and converts it to a latitude/longitude coordinate to calculate distance.
            This coordinate may be different from that returned by the Google Maps Geocoding API, for example a building entrance rather than its center. 
            Example: "origins=Bobcaygeon+ON|24+Sussex+Drive+Ottawa+ON".
            If you pass latitude/longitude coordinates, they are used unchanged to calculate distance.
            Ensure that no space exists between the latitude and longitude values. If you supply a place ID, you must prefix it with place_id. 
            Example: "origins= 41.43206,-81.38992|-33.86748,151.20699".
            You can only specify a placeID if the request includes an API key or a Google Maps APIs Premium Plan client ID.
            You can retrieve place IDs from the Google Maps Geocoding API and the Google Places API (including Place Autocomplete). 
            For an example using place IDs from Place Autocomplete, see Place Autocomplete and Directions.For more about place IDs, see the place ID overview. "origins= place_id:ChIJ3S-JXmauEmsRUcIaWtf4MzE".
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest.Destination">
            <summary>
            The address, textual latitude/longitude value, or place ID to which you wish to calculate directions. 
            The options for the destination parameter are the same as for the <see cref="P:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest.Origin"/> parameter, described above.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest.Region">
            <summary>
            Specifies the region code, specified as a ccTLD ("top-level domain") two-character value. (For more information see Region Biasing below.)
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest.Language">
            <summary>
            Language (optional) — The language in which to return results. See the supported list of domain languages. 
            Note that we often update supported languages so this list may not be exhaustive. 
            If language is not supplied, the Directions service will attempt to use the native language of the browser wherever possible. 
            You may also explicitly bias the results by using localized domains of http://map.google.com. 
            See Region Biasing for more information.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest.Units">
            <summary>
            Directions results contain text within distance fields to indicate the distance of the calculated route. The unit system to use can be specified:
            Units=metric (default) returns distances in kilometers and meters.
            Units=imperial returns distances in miles and feet.
            * Note: this unit system setting only affects the text displayed within distance fields. The distance fields also contain values which are always expressed in meters
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest.Avoid">
            <summary>
            avoid (optional) indicates that the calculated route(s) should avoid the indicated features. Currently, this parameter supports the following two arguments:
            tolls indicates that the calculated route should avoid toll roads/bridges.
            highways indicates that the calculated route should avoid highways.
            (For more information see Route Restrictions below.)
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest.TravelMode">
            <summary>
            (optional, defaults to driving) — specifies what mode of transport to use when calculating directions. Valid values are specified in Travel Modes.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest.TrafficModel">
            <summary>
            Traffic mdel (defaults to best_guess).
            Specifies the assumptions to use when calculating time in traffic. This setting affects the value returned 
            in the duration_in_traffic field in the response, which contains the predicted time in traffic based on historical averages.
            The traffic_model parameter may only be specified for requests where the travel mode is driving, and where the request includes a departure_time, 
            and only if the request includes an API key or a Google Maps APIs Premium Plan client ID.The available values for this parameter are:
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest.TransitMode">
            <summary>
            Specifies one or more preferred modes of transit. 
            This parameter may only be specified for requests where the mode is transit. 
            The parameter supports the following arguments <see cref="T:GoogleApi.Entities.Maps.Common.Enums.TransitMode"/>
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest.TransitRoutingPreference">
            <summary>
            Specifies preferences for transit requests. 
            Using this parameter, you can bias the options returned, rather than accepting the default best route chosen by the API. 
            This parameter may only be specified for requests where the mode is transit. 
            The parameter supports the following arguments: <see cref="T:GoogleApi.Entities.Maps.Common.Enums.TransitRoutingPreference"/>
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest.ArrivalTime">
            <summary>
            The time of arrival.
            Required when TravelMode = Transit
            Specifies the desired time of arrival for transit directions, in seconds since midnight, January 1, 1970 UTC.
            You can specify either departure_time or arrival_time, but not both. 
            Note that arrival_time must be specified as an integer.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest.DepartureTime">
            <summary>
            The time of departure.
            Required when TravelMode = Transit
            Specifies the desired time of departure.
            You can specify the time as an integer in seconds since midnight, January 1, 1970 UTC. 
            Alternatively, you can specify a value of now, which sets the departure time to the current time (correct to the nearest second).
            The departure time may be specified in two cases:
            1. For requests where the travel mode is transit: 
            You can optionally specify one of departure_time or arrival_time. 
            If neither time is specified, the departure_time defaults to now (that is, the departure time defaults to the current time).
            2. For requests where the travel mode is driving: 
            You can specify the departure_time to receive a route and trip duration (response field: duration_in_traffic) 
            that take traffic conditions into account. 
            This option is only available if the request contains a valid API key, or a valid Google Maps APIs Premium Plan client ID and signature. 
            The departure_time must be set to the current time or some time in the future. It cannot be in the past.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest.WayPoints">
            <summary>
            Waypoints (optional) specifies an array of waypoints. Waypoints alter a route by routing it through the specified location(s). 
            A waypoint is specified as either a latitude/longitude coordinate or as an address which will be geocoded. 
            (For more information on waypoints, see Using Waypoints in Routes below.)
            If you'd like to influence the route using waypoints without adding a stopover, prefix the waypoint with via:'
            Waypoints prefixed with via: will not add an entry to the legs array, but will instead route the journey through the provided waypoint.
            The via: prefix is most effective when creating routes in response to the user dragging the waypoints on the map. 
            Doing so allows the user to see how the final route may look in real-time and helps ensure that waypoints are placed in locations that 
            are accessible to the Google Maps Directions API.
            Caution: Using the via: prefix to avoid stopovers results in directions that are very strict in their interpretation of the waypoint. 
            This may result in severe detours on the route or ZERO_RESULTS in the response status code if the Google Maps Directions API is unable to create directions 
            through that point.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest.OptimizeWaypoints">
            <summary>
            Optimize the provided route by rearranging the waypoints in a more efficient order. 
            (This optimization is an application of the Travelling Salesman Problem.)
            Default: false.
            http://en.wikipedia.org/wiki/Travelling_salesman_problem
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest.Alternatives">
            <summary>
            Alternatives (optional), if set to true, specifies that the Directions service may provide more than one route alternative in the response. 
            Note that providing route alternatives may increase the response time from the server.
            Default: false.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Directions.Request.DirectionsRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.Directions.Request.WayPoint">
            <summary>
            WayPoint.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Request.WayPoint.Location">
            <summary>
            Location.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Request.WayPoint.IsVia">
            <summary>
            IsVia.
            The via: prefix is most effective when creating routes in response to the user dragging the waypoints on the map.
            Doing so allows the user to see how the final route may look in real-time and
            helps ensure that waypoints are placed in locations that are accessible to the Directions API.
            Caution: Using the via: prefix to avoid stopovers results in directions that are strict in their interpretation of the waypoint.
            This interprestation may result in severe detours on the route or ZERO_RESULTS in the response status code
            if the Directions API is unable to create directions through that point.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Directions.Request.WayPoint.#ctor(GoogleApi.Entities.Maps.Common.LocationEx,System.Boolean)">
            <summary>
            Constructor.
            </summary>
            <param name="location">The <see cref="P:GoogleApi.Entities.Maps.Directions.Request.WayPoint.Location"/>.</param>
            <param name="isVia">is prefixed with 'via:'</param>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Directions.Request.WayPoint.ToString">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.Directions.Response.DirectionsResponse">
            <summary>
            Directions Response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.DirectionsResponse.Routes">
            <summary>
            "routes" contains an array of routes from the origin to the destination. See Routes below.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.DirectionsResponse.WayPoints">
            <summary>
            WayPoints.
            Details about the geocoding of every waypoint, as well as origin and destination, can be found in the (JSON) geocoded_waypoints array.
            These can be used to infer why the service would return unexpected or no routes. Elements in the geocoded_waypoints array correspond,
            by their zero-based position, to the origin, the waypoints in the order they are specified, and the destination.Each element includes the following
            details about the geocoding operation for the corresponding waypoint
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction">
            <summary>
            Maneuver Action.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.None">
            <summary>
            Unknown.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Turn_Slight_Left">
            <summary>
            Turn_Slight_Left.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Sharp_Left">
            <summary>
            Sharp_Left.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Uturn_Left">
            <summary>
            Uturn_Left.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Turn_Left">
            <summary>
            Turn_Left.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Turn_Slight_Right">
            <summary>
            Turn_Slight_Right.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Turn_Sharp_Right">
            <summary>
            Turn_Sharp_Right.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Uturn_Right">
            <summary>
            Uturn_Right.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Turn_Right">
            <summary>
            Turn_Right.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Straight">
            <summary>
            Straight.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Ramp_Left">
            <summary>
            Ramp_Left.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Ramp_Right">
            <summary>
            Ramp_Right.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Merge">
            <summary>
            Merge.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Fork_Left">
            <summary>
            Fork_Left.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Fork_Right">
            <summary>
            Fork_Right.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Ferry">
            <summary>
            Ferry.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Ferry_Train">
            <summary>
            Ferry_Train.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Roundabout_Left">
            <summary>
            Roundabout_Left.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Roundabout_Right">
            <summary>
            Roundabout_Right.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Keep_Left">
            <summary>
            Keep_Left.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.ManeuverAction.Keep_Right">
            <summary>
            Keep_Right.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType">
            <summary>
            VehicleType.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType.Other">
            <summary>
            All other vehicles will return this type.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType.Rail">
            <summary>
            Rail.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType.MetroRail">
            <summary>
            Light rail transit.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType.Subway">
            <summary>
            Underground light rail.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType.Tram">
            <summary>
            Above ground light rail.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType.Monorail">
            <summary>
            Monorail.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType.HeavyRail">
            <summary>
            Heavy rail.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType.CommuterTrain">
            <summary>
            Commuter Train.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType.HighSpeedTrain">
            <summary>
            High speed train.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType.Bus">
            <summary>
            Bus.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType.IntercityBus">
            <summary>
            Intercity bus.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType.Trolleybus">
            <summary>
            Trolleybus.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType.ShareTaxi">
            <summary>
            Share taxi is a kind of bus with the ability to drop off and pick up passengers anywhere on its route.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType.Ferry">
            <summary>
            Ferry.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType.CableCar">
            <summary>
            A vehicle that operates on a cable, usually on the ground. Aerial cable cars may be of the type GONDOLA_LIFT.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType.GondolaLift">
            <summary>
            An aerial cable car.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType.Funicular">
            <summary>
            A vehicle that is pulled up a steep incline by a cable. A Funicular typically consists of two cars, with each car acting as a counterweight for the other.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Directions.Response.Enums.VehicleType.LongDistanceTrain">
            <summary>
            Long Distance Train.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Directions.Response.Leg">
            <summary>
            Each element in the legs array specifies a single leg of the journey from the origin to the destination in the calculated route. For routes that contain no waypoints, the route will consist of a single "leg," but for routes that define one or more waypoints, the route will consist of one or more legs, corresponding to the specific legs of the journey.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Leg.Steps">
            <summary>
            steps[] contains an array of steps denoting information about each separate step of the leg of the journey. (See Directions Steps below.)
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Leg.ViaWayPoints">
            <summary>
            Via-WayPoints.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Leg.Distance">
            <summary>
            distance indicates the total distance covered by this leg
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Leg.Duration">
            <summary>
            duration indicates the total duration of this leg,
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Leg.DurationInTraffic">
            <summary>
            Duration_in_traffic indicates the total duration of this leg, taking into account current traffic conditions. The duration in traffic will only be returned if all of the following are true:
            1.The directions request includes a departure_time parameter set to a value within a few minutes of the current time.
            2.The request includes a valid Maps for Business client and signature parameter.
            3.Traffic conditions are available for the requested route.
            4.The directions request does not include stopover waypoints.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Leg.ArrivalTime">
            <summary>
            The time of arrival. Only avaliable when using TravelMode = Transit
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Leg.DepartureTime">
            <summary>
            The time of departure. Only avaliable when using TravelMode = Transit
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Leg.StartLocation">
            <summary>
            start_location contains the latitude/longitude coordinates of the origin of this leg. Because the Directions API calculates directions between locations by using the nearest transportation option (usually a road) at the start and end points, start_location may be different than the provided origin of this leg if, for example, a road is not near the origin.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Leg.EndLocation">
            <summary>
            end_location contains the latitude/longitude coordinates of the given destination of this leg. Because the Directions API calculates directions between locations by using the nearest transportation option (usually a road) at the start and end points, end_location may be different than the provided destination of this leg if, for example, a road is not near the destination.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Leg.StartAddress">
            <summary>
            start_address contains the human-readable address (typically a street address) reflecting the start_location of this leg.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Leg.EndAddress">
            <summary>
            end_addresss contains the human-readable address (typically a street address) reflecting the end_location of this leg.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Directions.Response.Line">
            <summary>
            Line
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Line.Name">
            <summary>
            Contains the full name of this transit line. eg. "7 Avenue Express".
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Line.ShortName">
            <summary>
            Contains the short name of this transit line. This will normally be a line number, such as "M7" or "355".
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Line.Color">
            <summary>
            Contains the color commonly used in signage for this transit line. The color will be specified as a hex string such as: #FF0033. 
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Line.Agencies">
            <summary>
            Contains a List of TransitAgency objects that each provide information about the operator of the line.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Line.Url">
            <summary>
            Contains the URL for this transit line as provided by the transit agency.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Line.Icon">
            <summary>
            Contains the URL for the icon associated with this line.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Line.TextColor">
            <summary>
            Contains the color of text commonly used for signage of this line. The color will be specified as a hex string.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Line.Vehicle">
            <summary>
            Contains the type of vehicle used on this line.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Directions.Response.OverviewPolyline">
            <summary>
            Contains the encoded and decoded data returned in the overview_polyline field.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.OverviewPolyline.Points">
            <summary>
            Points.
            The encoded string containing the raw overview polyline.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.OverviewPolyline.Line">
            <summary>
            Decoded PolyLine.
            The decocded polyline from the points.
            An array of Location objects representing the points in the encoded overview polyline.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Directions.Response.Route">
            <summary>
            Route Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Route.Summary">
            <summary>
            summary contains a short textual description for the route, suitable for naming and disambiguating the route from alternatives.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Route.Legs">
            <summary>
            legs[] contains an array which contains information about a leg of the route, between two locations within the given route. A separate leg will be present for each waypoint or destination specified. (A route with no waypoints will contain exactly one leg within the legs array.) Each leg consists of a series of steps. (See Directions Legs below.)
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Route.WaypointOrder">
            <summary>
            waypoint_order contains an array indicating the order of any waypoints in the calculated route. This waypoints may be reordered if the request was passed optimize:true within its waypoints parameter.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Route.OverviewPath">
            <summary>
            overview_path contains an object holding an array of encoded points and levels that represent an approximate (smoothed) path of the resulting directions.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Route.Copyrights">
            <summary>
            copyrights contains the copyrights text to be displayed for this route. You must handle and display this information yourself.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Route.Warnings">
            <summary>
            warnings[] contains an array of warnings to be displayed when showing these directions. You must handle and display these warnings yourself.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Route.Fare">
            <summary>
            If present, contains the total fare (that is, the total ticket costs) on this route. 
            This property is only returned for transit requests and only for transit providers where fare information is available.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Route.Bounds">
            <summary>
            Bounds contains the viewport bounding box of the overview_polyline.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Directions.Response.Step">
            <summary>
            Each element in the steps array defines a single step of the calculated directions. A step is the most atomic unit of a direction's route, containing a single step describing a specific, single instruction on the journey. E.g. "Turn left at W. 4th St." The step not only describes the instruction but also contains distance and duration information relating to how this step relates to the following step. For example, a step denoted as "Merge onto I-80 West" may contain a duration of "37 miles" and "40 minutes," indicating that the next step is 37 miles/40 minutes from this step.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Step.HtmlInstructions">
            <summary>
            html_instructions contains formatted instructions for this step, presented as an HTML text string.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Step.Distance">
            <summary>
            distance contains the distance covered by this step until the next step. (See the discussion of this field in Directions Legs above.) This field may be undefined if the distance is unknown.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Step.Duration">
            <summary>
            duration contains the typical time required to perform the step, until the next step (See the description in Directions Legs above.) This field may be undefined if the duration is unknown.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Step.StartLocation">
            <summary>
            start_location contains the location of the starting point of this step, as a single set of lat and lng fields.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Step.EndLocation">
            <summary>
            end_location contains the location of the starting point of this step, as a single set of lat and lng fields.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Step.Maneuver">
            <summary>
            Maneuver contains the action to take for the current step (turn left, merge, straight, etc.).
            This field is used to determine which icon to display, and can contain one of the following values: turn-slight-left, turn-sharp-left,
            uturn-left, turn-left, turn-slight-right, turn-sharp-right, uturn-right, turn-right, straight, ramp-left, ramp-right, merge, fork-left,
            fork-right, ferry, ferry-train, roundabout-left, roundabout-right.
            Values in this list are subject to change.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Step.TravelMode">
            <summary>
            TravelMode. The mode of transport to use when calculating directions.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Step.PolyLine">
            <summary>
            Contains an object holding an array of encoded points that represent an approximate (smoothed) path of the resulting directions.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Step.TransitDetails">
            <summary>
            More information about the step. Only avaliable when TravelMode = Transit
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Step.Steps">
            <summary>
            steps contains detailed directions for walking or driving steps in transit directions. Substeps are only available when travel_mode is set to "transit". 
            The inner steps array is of the same type as steps.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Directions.Response.Stop">
            <summary>
            Contains information about the stop/station for this part of the trip
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Stop.Name">
            <summary>
            The name of the transit station/stop. eg. "Union Square".
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Stop.Location">
            <summary>
            The location of the transit station/stop, represented as lattitude and longitude.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Directions.Response.TransitAgency">
            <summary>
            Information about the transit agency.
            Note: You must display the names and URLs of the transit agencies servicing the trip results.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.TransitAgency.Name">
            <summary>
            Contains the name of the transit agency.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.TransitAgency.Url">
            <summary>
            Contains the URL for the transit agency.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.TransitAgency.Phone">
            <summary>
            Contains the phone number of the transit agency.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Directions.Response.TransitDetails">
            <summary>
            Transit Details.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.TransitDetails.ArrivalStop">
            <summary>
            Contains information about the stop/station for this part of the trip
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.TransitDetails.DepartureStop">
            <summary>
            Contains information about the stop/station for this part of the trip.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.TransitDetails.ArrivalTime">
            <summary>
            Contain the arrival times for this leg of the journey
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.TransitDetails.DepartureTime">
            <summary>
            Contain the departure times for this leg of the journey
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.TransitDetails.Headsign">
            <summary>
            Specifies the direction in which to travel on this line, as it is marked on the vehicle or at the departure stop. This will often be the terminus station.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.TransitDetails.Headway">
            <summary>
            Specifies the expected number of seconds between departures from the same stop at this time. For example, with a headway value of 600, you would expect a ten minute wait if you should miss your bus.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.TransitDetails.NumberOfStops">
            <summary>
            Contains the number of stops in this step, counting the arrival stop, but not the departure stop. For example, if your directions involve leaving from Stop A, passing through stops B and C, and arriving at stop D, num_stops will return 3.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.TransitDetails.Lines">
            <summary>
            Contains information about the transit line used in this step.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Directions.Response.Vehicle">
            <summary>
            Vehicle
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Vehicle.Name">
            <summary>
            Contains the name of the vehicle on this line. eg. "Subway."
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Vehicle.Icon">
            <summary>
            Contains the URL for an icon associated with this vehicle type.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.Vehicle.VehicleType">
            <summary>
            Contains the type of vehicle that runs on this line.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Directions.Response.ViaWayPoint">
            <summary>
            Via-WayPoint.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.ViaWayPoint.Location">
            <summary>
            Location.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.ViaWayPoint.StepIndex">
            <summary>
            Step Index.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.ViaWayPoint.StepInterpolation">
            <summary>
            Step Interpolation.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Directions.Response.WayPoint">
            <summary>
            Way Point.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.WayPoint.Status">
            <summary>
            "geocoder_status" indicates the status code resulting from the geocoding operation.
            This field may contain the following values.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.WayPoint.PartialMatch">
            <summary>
            "partial_match" indicates that the geocoder did not return an exact match for the original request,
            though it was able to match part of the requested address.
            You may wish to examine the original request for misspellings and/or an incomplete address. Partial matches most often occur
            for street addresses that do not exist within the locality you pass in the request.
            Partial matches may also be returned when a request matches two or more locations in the same locality.For example, "21 Henr St, Bristol, UK" will return a partial match for both Henry Street and Henrietta Street. Note that if a request includes a misspelled address component, the geocoding service may suggest an alternative address. Suggestions triggered in this way will also be marked as a partial match.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.WayPoint.PlaceId">
            <summary>
            is a unique identifier that can be used with other Google APIs.
            For example, you can use the place_id from a Google Place Autocomplete response to calculate directions to a local business.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Directions.Response.WayPoint.Types">
            <summary>
            "types" indicates the address type of the geocoding result used for calculating directions.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.DistanceMatrix.Request.DistanceMatrixRequest">
            <summary>
            Distance Matrix Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Request.DistanceMatrixRequest.BaseUrl">
            <inheritdoc />
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Request.DistanceMatrixRequest.Origins">
            <summary>
            One or more addresses and/or textual latitude/longitude values, separated with the pipe (|) character, from which to calculate distance and time. 
            If you pass an address as a string, the service will geocode the string and convert it to a latitude/longitude coordinate to calculate directions. 
            If you pass coordinates, ensure that no space exists between the latitude and longitude values.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Request.DistanceMatrixRequest.Destinations">
            <summary>
            One or more addresses and/or textual latitude/longitude values, separated with the pipe (|) character, to which to calculate distance and time. 
            If you pass an address as a string, the service will geocode the string and convert it to a latitude/longitude coordinate to calculate directions. 
            If you pass coordinates, ensure that no space exists between the latitude and longitude values
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Request.DistanceMatrixRequest.Units">
            <summary>
            Distance Matrix results contain text within distance fields to indicate the distance of the calculated route. 
            The unit system to use can be specified:  Units=metric (default) returns distances in kilometers and meters.
            Units=imperial returns distances in miles and feet.
            * Note: this unit system setting only affects the text displayed within distance fields. 
            The distance fields also contain values which are always expressed in meters
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Request.DistanceMatrixRequest.Avoid">
            <summary>
            avoid (optional) indicates that the calculated route(s) should avoid the indicated features. 
            Currently, this parameter supports the following two arguments: 
            tolls indicates that the calculated route should avoid toll roads/bridges.
            highways indicates that the calculated route should avoid highways.
            (For more information see Route Restrictions below.)
            
            Restrictions:
            Directions may be calculated that adhere to certain restrictions. 
            Restrictions are indicated by use of the avoid parameter, and an argument to that parameter indicating the restriction to avoid. 
            The following estrictions are supported <see cref="T:GoogleApi.Entities.Maps.Common.Enums.AvoidWay"/>
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Request.DistanceMatrixRequest.TravelMode">
            <summary>
            (optional, defaults to driving) — specifies what mode of transport to use when calculating directions. Valid values are specified in Travel Modes.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Request.DistanceMatrixRequest.TrafficModel">
            <summary>
            Traffic mdel (defaults to best_guess).
            Specifies the assumptions to use when calculating time in traffic. This setting affects the value returned 
            in the duration_in_traffic field in the response, which contains the predicted time in traffic based on historical averages.
            The traffic_model parameter may only be specified for requests where the travel mode is driving, and where the request includes a departure_time, 
            and only if the request includes an API key or a Google Maps APIs Premium Plan client ID.The available values for this parameter are:
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Request.DistanceMatrixRequest.TransitMode">
            <summary>
            Specifies one or more preferred modes of transit. 
            This parameter may only be specified for requests where the mode is transit. 
            The parameter supports the following arguments <see cref="T:GoogleApi.Entities.Maps.Common.Enums.TransitMode"/>
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Request.DistanceMatrixRequest.TransitRoutingPreference">
            <summary>
            Specifies preferences for transit requests. 
            Using this parameter, you can bias the options returned, rather than accepting the default best route chosen by the API. 
            This parameter may only be specified for requests where the mode is transit. 
            The parameter supports the following arguments: <see cref="T:GoogleApi.Entities.Maps.Common.Enums.TransitRoutingPreference"/>
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Request.DistanceMatrixRequest.DepartureTime">
            <summary>
            The desired time of departure. You can specify the time as an integer in seconds since midnight, January 1, 1970 UTC. Alternatively, 
            you can specify a value of now, which sets the departure time to the current time (correct to the nearest second). 
            The departure time may be specified in two cases:
            - For requests where the travel mode is transit: You can optionally specify one of departure_time or arrival_time. If neither time is specified, 
              the departure_time defaults to now (that is, the departure time defaults to the current time).
            - For requests where the travel mode is driving: Google Maps API for Work customers can specify the departure_time to receive trip duration considering 
              current traffic conditions. The departure_time must be set to within a few minutes of the current time.
            Note: Requests that include the departure_time parameter are limited to 100 elements
            Note: You can specify either DepartureTime or ArrivalTime, but not both
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Request.DistanceMatrixRequest.ArrivalTime">
            <summary>
            Specifies the desired time of arrival for transit requests, in seconds since midnight, January 1, 1970 UTC. 
            Note: You can specify either DepartureTime or ArrivalTime, but not both
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Request.DistanceMatrixRequest.Language">
            <summary>
            language (optional) — The language in which to return results. See the supported list of domain languages. 
            Note that we often update supported languages so this list may not be exhaustive. 
            If language is not supplied, the Directions service will attempt to use the native language of the browser wherever possible. 
            You may also explicitly bias the results by using localized domains of http://map.google.com. 
            See Region Biasing for more information.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Request.DistanceMatrixRequest.Region">
            <summary>
            region (optional) — The region code, specified as a ccTLD (country code top-level domain - https://en.wikipedia.org/wiki/CcTLD) two-character value. 
            Most ccTLD codes are identical to ISO 3166-1 codes, with some exceptions. 
            This parameter will only influence, not fully restrict, results from the geocoder. 
            If more relevant results exist outside of the specified region, they may be included.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.DistanceMatrix.Request.DistanceMatrixRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.DistanceMatrix.Response.DistanceMatrixResponse">
            <summary>
            DistanceMatrix Response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Response.DistanceMatrixResponse.OriginAddresses">
            <summary>
            OriginAddresses contains an array of addresses as returned by the API from your original request. 
            These are formatted by the geocoder and localized according to the language parameter passed with the request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Response.DistanceMatrixResponse.DestinationAddresses">
            <summary>
            DestinationAddresses contains an array of addresses as returned by the API from your original request. 
            As with origin_addresses, these are localized if appropriate.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Response.DistanceMatrixResponse.Rows">
            <summary>
            Rows contains an array of elements, which in turn each contain a status, duration, and distance element.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.DistanceMatrix.Response.Element">
            <summary>
            Element.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Response.Element.Status">
            <summary>
            Status: See Status Codes for a list of possible status codes.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Response.Element.Duration">
            <summary>
            Duration: The duration of this route, expressed in seconds (the value field) and as text. 
            The textual representation is localized according to the query's language parameter.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Response.Element.DurationInTraffic">
            <summary>
            The length of time it takes to travel this route, based on current and historical traffic conditions.
            See the traffic_model request parameter for the options you can use to request that the returned value is optimistic, pessimistic, or a best-guess estimate.
            The duration is expressed in seconds (the value field) and as text.The textual representation is localized according to the query's language parameter. 
            The duration in traffic is returned only if all of the following are true:
            - The request includes a departure_time parameter.
            - The request includes a valid API key, or a valid Google Maps APIs Premium Plan client ID and signature.
            - Traffic conditions are available for the requested route.
            - The mode parameter is set to driving.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Response.Element.Distance">
            <summary>
            Distance: The total distance of this route, expressed in meters (value) and as text. 
            The textual value uses the unit system specified with the unit parameter of the original request, or the origin's region.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Response.Element.Fare">
            <summary>
            If present, contains the total fare (that is, the total ticket costs) on this route. 
            This property is only returned for transit requests and only for transit providers where fare information is available.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.DistanceMatrix.Response.Row">
            <summary>
            When the Distance Matrix API returns results, it places them within a JSON rows array. 
            Even if no results are returned (such as when the origins and/or destinations don't exist), it still returns an empty array. 
            Rows are ordered according to the values in the origin parameter of the request. Each row corresponds to an origin, and each element within 
            that row corresponds to a pairing of the origin with a destination value.
            Each row array contains one or more element entries, which in turn contain the information about a single origin-destination pairing.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.DistanceMatrix.Response.Row.Elements">
            <summary>
            Each row array contains one or more element entries, 
            which in turn contain the information about a single origin-destination pairing.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Elevation.Request.ElevationRequest">
            <summary>
            Elevation Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Elevation.Request.ElevationRequest.BaseUrl">
            <inheritdoc />
        </member>
        <member name="P:GoogleApi.Entities.Maps.Elevation.Request.ElevationRequest.Path">
            <summary>
            Sampled path requests are indicated through use of the path and samples parameters, indicating a request for elevation data along a path at specified intervals. 
            As with positional requests using the locations parameter, the path parameter specifies a set of latitude and longitude values. Unlike a positional request, however, 
            the path specifies an ordered set of vertices. Rather than return elevation data only at the vertices, path requests are sampled along the length of the path, 
            based on the number of samples specified (inclusive of the endpoints).
            The path parameter may take either of the following arguments:
            An array of two or more comma-separated coordinate text strings separated using the pipe ('|') character: path=40.714728,-73.998672|-34.397,150.644
            Encoded coordinates using the Encoded Polyline Algorithm: path=enc:gfo}EtohhUxD@bAxJmGF
            Latitude and longitude coordinate strings are defined using numerals within a comma-separated text string. For example, "40.714728,-73.998672|-34.397, 150.644" is a valid path value. Latitude and longitude values must correspond to a valid location on the face of the earth. Latitudes can take any value between -90 and 90 while longitude values can take any value between -180 and 180. If you specify an invalid latitude or longitude value, your request will be rejected as a bad request.
            You may pass any number of multiple coordinates within an array or encoded polyline, as long as you don't exceed the service quotas, while still constructing a valid URL. Note that when passing multiple coordinates, the accuracy of any returned data may be of lower resolution than when requesting data for a single coordinate
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Elevation.Request.ElevationRequest.Locations">
            <summary>
            Locations defines the location(s) on the earth from which to return elevation data. 
            This parameter takes either a single location as a comma-separated {latitude,longitude} pair (e.g. "40.714728,-73.998672") or multiple latitude/longitude pairs 
            passed as an array or as an encoded polyline. For more information.
            Note: Either this or Path property must be set, this overrides the Path.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Elevation.Request.ElevationRequest.Samples">
            <summary>
            Required when using the Path, and specifies the number of sample points along a path for which to return elevation data. 
            The samples parameter divides the given path into an ordered set of equidistant points along the path.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Elevation.Request.ElevationRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.Elevation.Response.ElevationResponse">
            <summary>
            Elevation Response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Elevation.Response.ElevationResponse.Results">
            <summary>
            Results.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Elevation.Response.Result">
            <summary>
            Result.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Elevation.Response.Result.Location">
            <summary>
            A location element (containing lat and lng elements) of the position for which elevation data is being computed.
            Note that for path requests, the set of location elements will contain the sampled points along the path.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Elevation.Response.Result.Elevation">
            <summary>
            An elevation element indicating the elevation of the location in meters.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Elevation.Response.Result.Resolution">
            <summary>
            A resolution value, indicating the maximum distance between data points from which the elevation was interpolated, in meters. This property will be missing if the resolution is not known. Note that elevation data becomes more coarse (larger resolution values) when multiple points are passed. To obtain the most accurate elevation value for a point, it should be queried independently.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geocoding.Address.Request.AddressGeocodeRequest">
            <summary>
            Geocoding Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.Address.Request.AddressGeocodeRequest.Address">
            <summary>
            Address (required).
            The street address or plus code that you want to geocode.
            Specify addresses in accordance with the format used by the national postal service of the country concerned.
            Additional address elements such as business names and unit, suite or floor numbers should be avoided
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.Address.Request.AddressGeocodeRequest.Region">
            <summary>
            Region (optional) — The region code, specified as a ccTLD ("top-level domain") two-character value. (For more information see Region Biasing below.)
            The bounds and region parameters will only influence, not fully restrict, results from the geocoder.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.Address.Request.AddressGeocodeRequest.Bounds">
            <summary>
            Bounds (optional) — The bounding box of the viewport within which to bias geocode results more prominently. (For more information see Viewport Biasing below.)
            The bounds and region parameters will only influence, not fully restrict, results from the geocoder.
            For more information see: https://developers.google.com/maps/documentation/geocoding/intro#Viewports
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.Address.Request.AddressGeocodeRequest.Components">
            <summary>
            Components. The component filters, separated by a pipe (|).
            Each component filter consists of a component:value pair and will fully restrict the results from the geocoder.
            For more information see Component Filtering: https://developers.google.com/maps/documentation/geocoding/intro#ComponentFiltering
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Geocoding.Address.Request.AddressGeocodeRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geocoding.BaseGeocodeRequest">
            <summary>
            Base Geocoding Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.BaseGeocodeRequest.BaseUrl">
            <inheritdoc />
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.BaseGeocodeRequest.Language">
            <summary>
            language (optional) — The language in which to return results. 
            See the supported list of domain languages. Note that we often update supported languages so this list may not be exhaustive. 
            If language is not supplied, the geocoder will attempt to use the native language of the domain from which the request is sent wherever possible.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Geocoding.BaseGeocodeRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geocoding.Common.Enums.GeometryLocationType">
            <summary>
            Location Type.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Geocoding.Common.Enums.GeometryLocationType.Rooftop">
            <summary>
            Indicates that the returned result is a precise geocode for which we have location information accurate down to street address precision.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Geocoding.Common.Enums.GeometryLocationType.Range_Interpolated">
            <summary>
            Indicates that the returned result reflects an approximation (usually on a road) interpolated between two precise points (such as intersections). 
            Interpolated results are generally returned when rooftop geocodes are unavailable for a street address.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Geocoding.Common.Enums.GeometryLocationType.Geometric_Center">
            <summary>
            Indicates that the returned result is the geometric center of a result such as a polyline 
            (for example, a street) or polygon (region).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Geocoding.Common.Enums.GeometryLocationType.Approximate">
            <summary>
            Indicates that the returned result is approximate.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geocoding.Common.Result">
            <summary>
            When the geocoder returns results, it places them within a (JSON) results array. Even if the geocoder returns no results (such as if the address doesn't exist) it still returns an empty results array. (XML responses consist of zero or more result elements.)
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.Common.Result.PlaceId">
            <summary>
            place_id is a unique identifier that can be used with other Google APIs. 
            For example, you can use the place_id in a Google Places API request to get details of a local business, such as phone number, 
            opening hours, user reviews, and more. See the place ID overview.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.Common.Result.Geometry">
            <summary>
            Geometry.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.Common.Result.FormattedAddress">
            <summary>
            Formatted address is a string containing the human-readable address of this location. 
            Often this address is equivalent to the "postal address," which sometimes differs from country to country. 
            (Note that some countries, such as the United Kingdom, do not allow distribution of true postal addresses due to licensing restrictions.) 
            This address is generally composed of one or more address components. 
            For example, the address "111 8th Avenue, New York, NY" contains separate address components for "111" 
            (the street number, "8th Avenue" (the route), "New York" (the city) and "NY" (the US state). These address components contain 
            additional information as noted below.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.Common.Result.PartialMatch">
            <summary>
            partial_match indicates that the geocoder did not return an exact match for the original request, though it was able to match part of the requested address. 
            You may wish to examine the original request for misspellings and/or an incomplete address.
            Partial matches most often occur for street addresses that do not exist within the locality you pass in the request. 
            Partial matches may also be returned when a request matches two or more locations in the same locality. 
            For example, "21 Henr St, Bristol, UK" will return a partial match for both Henry Street and Henrietta Street. 
            Note that if a request includes a misspelled address component, the geocoding service may suggest an alternative address. Suggestions triggered in this way will also be marked as a partial match.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.Common.Result.PlusCode">
            <summary>
            plus_code is an encoded location reference, derived from latitude and longitude coordinates,
            that represents an area: 1/8000th of a degree by 1/8000th of a degree(about 14m x 14m at the equator) or smaller.
            Plus codes can be used as a replacement for street addresses in places where they do not exist (where buildings are not numbered or streets are not named).
            The plus code is formatted as a global code and a compound code:
            - global_code is a 4 character area code and 6 character or longer local code(849VCWC8+R9).
            - compound_code is a 6 character or longer local code with an explicit location (CWC8+R9, Mountain View, CA, USA).
            Typically, both the global code and compound code are returned.However, if the result is in a remote location(for example, an ocean or desert)
            only the global code may be returned.
            See further details about pkus codes here: https://en.wikipedia.org/wiki/Open_Location_Code and https://plus.codes.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.Common.Result.PostcodeLocalities">
            <summary>
            postcode_localities[] is an array denoting all the localities contained in a postal code. 
            This is only present when the result is a postal code that contains multiple localities.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.Common.Result.Types">
            <summary>
            The types[] array indicates the type of the returned result. 
            This array contains a set of one or more tags identifying the type of feature returned in the result. 
            For example, a geocode of "Chicago" returns "locality" which indicates that "Chicago" is a city, 
            and also returns "political" which indicates it is a political entity.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.Common.Result.AddressComponents">
            <summary>
            address_components[] is an array containing the separate address components
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geocoding.GeocodeResponse">
            <summary>
            Geocode Response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.GeocodeResponse.Results">
            <summary>
            Results.
            When the geocoder returns results, it places them within a (JSON) results array. 
            Even if the geocoder returns no results (such as if the address doesn't exist) it still returns an empty results array.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geocoding.Location.Request.LocationGeocodeRequest">
            <summary>
            Reverse Geocoding Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.Location.Request.LocationGeocodeRequest.Location">
            <summary>
            Latlng (required).
            The textual latitude/longitude value for which you wish to obtain the closest, human-readable address.
            If you pass a latlng, the geocoder performs what is known as a reverse geocode.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.Location.Request.LocationGeocodeRequest.ResultTypes">
            <summary>
            result_type — A filter of one or more address types, separated by a pipe (|).
            If the parameter contains multiple address types, the API returns all addresses that match any of the types.
            A note about processing: The result_type parameter does not restrict the search to the specified address type(s).
            Rather, the result_type acts as a post-search filter: the API fetches all results for the specified latlng,
            then discards those results that do not match the specified address type(s).
            Note: This parameter is available only for requests that include an API key or a client ID. 
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.Location.Request.LocationGeocodeRequest.LocationTypes">
            <summary>
            location_type — A filter of one or more location types, separated by a pipe (|).
            If the parameter contains multiple location types, the API returns all addresses that match any of the types.
            A note about processing: The location_type parameter does not restrict the search to the specified location type(s).
            Rather, the location_type acts as a post-search filter: the API fetches all results for the specified latlng,
            then discards those results that do not match the specified location type(s).
            Note: This parameter is available only for requests that include an API key or a client ID. 
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Geocoding.Location.Request.LocationGeocodeRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geocoding.Place.Request.PlaceGeocodeRequest">
            <summary>
            Place Geocoding Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.Place.Request.PlaceGeocodeRequest.PlaceId">
            <summary>
            PlaceId (required).
            The place ID of the place for which you wish to obtain the human-readable address. 
            The place ID is a unique identifier that can be used with other Google APIs. For example, you can use the placeID returned by the Google Maps Roads API 
            to get the address for a snapped point. For more information about place IDs, see the place ID overview. 
            The place ID may only be specified if the request includes an API key or a Google Maps APIs Premium Plan client ID.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Geocoding.Place.Request.PlaceGeocodeRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.GlobalCode">
            <summary>
            Global Code.
            The global code part of a plus code.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.GlobalCode.Code">
            <summary>
            Code.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.GlobalCode.#ctor(System.String)">
            <summary>
            Constructor.
            </summary>
            <param name="code">The code.</param>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.GlobalCode.ToString">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.LocalCodeAndLocality">
            <summary>
            Local Code And Locality.
            The local code part of a plus code, and a locality.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.LocalCodeAndLocality.Code">
            <summary>
            Code.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.LocalCodeAndLocality.Locality">
            <summary>
            Locality.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.LocalCodeAndLocality.#ctor(System.String,System.String)">
            <summary>
            Constructor.
            </summary>
            <param name="localCode">The local code.</param>
            <param name="locality">The locality.</param>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.LocalCodeAndLocality.ToString">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.Location">
            <summary>
            Location.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.Location.#ctor(GoogleApi.Entities.Common.Coordinate)">
            <inheritdoc />
        </member>
        <member name="M:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.Location.#ctor(GoogleApi.Entities.Common.Address)">
            <inheritdoc />
        </member>
        <member name="M:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.Location.#ctor(GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.GlobalCode)">
            <summary>
            Constructor.
            </summary>
            <param name="globalCode">The <see cref="T:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.GlobalCode"/>.</param>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.Location.#ctor(GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.LocalCodeAndLocality)">
            <summary>
            Constructor.
            </summary>
            <param name="localCodeAndLocality">The <see cref="T:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.LocalCodeAndLocality"/>.</param>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.PlusCodeGeocodeRequest">
            <summary>
            Plus Code Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.PlusCodeGeocodeRequest.BaseUrl">
            <inheritdoc />
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.PlusCodeGeocodeRequest.Address">
            <summary>
            The Address.
            The address to encode. This can be any of the following (if the ekey parameter is also provided):
            - A latitude/longitude
            - A street address
            - A global code
            - A local code and locality
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.PlusCodeGeocodeRequest.Language">
            <summary>
            language (optional) — The language in which to return results. 
            See the supported list of domain languages. Note that we often update supported languages so this list may not be exhaustive. 
            If language is not supplied, the geocoder will attempt to use the native language of the domain from which the request is sent wherever possible.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.PlusCodeGeocodeRequest.Email">
            <summary>
            Email.
            Provide an email address that can be used to contact you.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.PlusCodeGeocodeRequest.UseEncryptedKey">
            <summary>
            Use Encrypted Key.
            The request will send the 'ekey' parameter instead of 'key'.
            See https://github.com/google/open-location-code/wiki/Plus-codes-API#securing-your-api-key
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Geocoding.PlusCode.Request.PlusCodeGeocodeRequest.GetQueryStringParameters">
            <summary>
            See <see cref="M:GoogleApi.Entities.Maps.Geocoding.BaseGeocodeRequest.GetQueryStringParameters"/>.
            </summary>
            <returns>The <see cref="T:System.Collections.Generic.IList`1"/> collection.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geocoding.PlusCode.Response.Locality">
            <summary>
            Locality.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.PlusCode.Response.Locality.Address">
            <summary>
            Address.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.PlusCode.Response.Locality.PlaceId">
            <summary>
            Place Id.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geocoding.PlusCode.Response.PlusCode">
            <summary>
            Plus Code.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.PlusCode.Response.PlusCode.GlobalCode">
            <summary>
            Global Code.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.PlusCode.Response.PlusCode.LocalCode">
            <summary>
            Local Code.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.PlusCode.Response.PlusCode.BestStreetAddress">
            <summary>
            Best Street Address.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.PlusCode.Response.PlusCode.Locality">
            <summary>
            Locality.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.PlusCode.Response.PlusCode.Geometry">
            <summary>
            Locality.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geocoding.PlusCode.Response.PlusCodeGeocodeResponse">
            <summary>
            Plus Code Response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geocoding.PlusCode.Response.PlusCodeGeocodeResponse.PlusCode">
            <summary>
            Plus Code.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geolocation.Request.CellTower">
            <summary>
            The request body's cellTowers array contains zero or more cell tower objects.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.CellTower.CellId">
            <summary>
            Required. Unique identifier of the cell. On GSM, this is the Cell ID (CID); CDMA networks use the Base Station ID (BID). 
            WCDMA networks use the UTRAN/GERAN Cell Identity (UC-Id), which is a 32-bit value concatenating the Radio Network Controller (RNC) and Cell ID. 
            Specifying only the 16-bit Cell ID value in WCDMA networks may return inaccurate results.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.CellTower.LocationAreaCode">
            <summary>
            Required. The Location Area Code (LAC) for GSM and WCDMAnetworks. 
            The Network ID (NID) for CDMA networks.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.CellTower.MobileCountryCode">
            <summary>
            Required. The cell tower's Mobile Country Code (MCC).
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.CellTower.MobileNetworkCode">
            <summary>
            Required. The cell tower's Mobile Network Code. 
            This is the MNC for GSM and WCDMA; CDMA uses the System ID (SID).
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.CellTower.Age">
            <summary>
            The number of milliseconds since this cell was primary. If age is 0, the cellId represents a current measurement.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.CellTower.SignalStrength">
            <summary>
            Radio signal strength measured in dBm.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.CellTower.TimingAdvance">
            <summary>
            The timing advance value.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geolocation.Request.Enums.RadioType">
            <summary>
            Radio Type.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Geolocation.Request.Enums.RadioType.Lte">
            <summary>
            Lte.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Geolocation.Request.Enums.RadioType.Gsm">
            <summary>
            Gsm.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Geolocation.Request.Enums.RadioType.Cdma">
            <summary>
            Cdma.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Geolocation.Request.Enums.RadioType.Wcdma">
            <summary>
            Wcdma.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geolocation.Request.GeolocationRequest">
            <summary>
            Geolocation Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.GeolocationRequest.BaseUrl">
            <inheritdoc />
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.GeolocationRequest.Carrier">
            <summary>
            The carrier name.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.GeolocationRequest.HomeMobileCountryCode">
            <summary>
            The mobile country code (MCC) for the device's home network.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.GeolocationRequest.HomeMobileNetworkCode">
            <summary>
            The mobile network code (MNC) for the device's home network.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.GeolocationRequest.RadioType">
            <summary>
            The mobile radio type. 
            Supported values are lte, gsm, cdma, and wcdma. While this field is optional, it should be included if a value is available, 
            for more accurate results.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.GeolocationRequest.ConsiderIp">
            <summary>
            Specifies whether to fall back to IP geolocation if wifi and cell tower signals are not available. 
            Note that the IP address in the request header may not be the IP of the device. 
            Defaults to true. 
            Set considerIp to false to disable fallback.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.GeolocationRequest.CellTowers">
            <summary>
            An array of cell tower objects. See <see cref="T:GoogleApi.Entities.Maps.Geolocation.Request.CellTower"/>.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.GeolocationRequest.WifiAccessPoints">
            <summary>
            An array of WiFi access point objects. See  <see cref="T:GoogleApi.Entities.Maps.Geolocation.Request.WifiAccessPoint"/>.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geolocation.Request.WifiAccessPoint">
            <summary>
            The request body's wifiAccessPoints array must contain two or more WiFi access point objects. 
            MacAddress is required.
            All other fields are optional.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.WifiAccessPoint.MacAddress">
            <summary>
            Required. The MAC address of the WiFi node. Separators must be : (colon).
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.WifiAccessPoint.SignalStrength">
            <summary>
            The current signal strength measured in dBm.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.WifiAccessPoint.Age">
            <summary>
            The number of milliseconds since this access point was detected.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.WifiAccessPoint.Channel">
            <summary>
            The channel over which the client is communicating with the access point.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Request.WifiAccessPoint.SignalToNoiseRatio">
            <summary>
            The current signal to noise ratio measured in dB.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Geolocation.Response.GeolocationResponse">
            <summary>
            Geocoding Response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Response.GeolocationResponse.Location">
            <summary>
            The user’s estimated latitude and longitude, in degrees. Contains one lat and one lng subfield.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Response.GeolocationResponse.Accuracy">
            <summary>
            The accuracy of the estimated location, in meters. This represents the radius of a circle around the given location.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Geolocation.Response.GeolocationResponse.Error">
            <summary>
            Error, if any occured. 
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Roads.BaseRoadsResponse">
            <summary>
            Base abstract roads response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.BaseRoadsResponse.WarningMessage">
            <summary>
            A warning message about the result quality, typically populated if the input points were too sparse
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.BaseRoadsResponse.SnappedPoints">
            <summary>
            An array of snapped points.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.BaseRoadsResponse.Errors">
            <summary>
            A list of errors which occurred. 
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Roads.Common.Coordinate">
            <summary>
            Location (Roads only). 
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.Common.Coordinate.Latitude">
            <summary>
            Latitude.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.Common.Coordinate.Longitude">
            <summary>
            Longitude.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Roads.Common.Coordinate.#ctor">
            <summary>
            Default Constructor.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Roads.Common.Coordinate.#ctor(System.Double,System.Double)">
            <summary>
            Contructor intializing a valid Location.
            </summary>
            <param name="latitude"></param>
            <param name="longitude"></param>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Roads.Common.Coordinate.ToString">
            <summary>
            Overrdden ToString method for default conversion to Google compatible string.
            </summary>
            <returns></returns>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Roads.Common.Enums.Units">
            <summary>
            Speed Units.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Roads.Common.Enums.Units.Mph">
            <summary>
            Miles per hour.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.Roads.Common.Enums.Units.Kph">
            <summary>
            Kilometers per hour.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Roads.Common.Error">
            <summary>
            Error.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.Common.Error.Code">
            <summary>
            This is the same as the HTTP status of the response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.Common.Error.ErrorMessage">
            <summary>
            A short description of the error.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.Common.Error.Status">
            <summary>
            The status of the request.
            See <see cref="T:GoogleApi.Entities.Common.Enums.Status"/>.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.Common.Error.Details">
            <summary>
            Error details.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Roads.Common.ErrorDetail">
            <summary>
            Error Detail.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.Common.ErrorDetail.Type">
            <summary>
            The type of error.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.Common.ErrorDetail.Links">
            <summary>
            Links associated with the errors.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Roads.Common.Link">
            <summary>
            Link.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.Common.Link.Description">
            <summary>
            Description of the link.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.Common.Link.Url">
            <summary>
            the url.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Roads.Common.SnappedPoint">
            <summary>
            Snapped point.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.Common.SnappedPoint.Location">
            <summary>
            Location — Contains a latitude and longitude value.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.Common.SnappedPoint.OriginalIndex">
            <summary>
            OriginalIndex — An integer that indicates the corresponding value in the original request. 
            Each value in the request should map to a snapped value in the response. However, if you've set interpolate=true, then it's possible that the response will contain more coordinates than the request. 
            Interpolated values will not have an originalIndex. 
            These values are indexed from 0, so a point with an originalIndex of 4 will be the snapped value of the 5th latitude/longitude passed to the path parameter.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.Common.SnappedPoint.PlaceId">
            <summary>
            PlaceId — A unique identifier for a place. 
            All place IDs returned by the Google Maps Roads API correspond to road segments. 
            Place IDs can be used with other Google APIs, including the Google Places API and the Google Maps JavaScript API. 
            For example, if you need to get road names for the snapped points returned by the Google Maps Roads API, you can pass the placeId to the 
            Google Places API or the Google Maps Geocoding API. Within the Google Maps Roads API, you can pass the placeId to the speedLimit method to 
            determine the speed limit along that road segment.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Roads.NearestRoads.Request.NearestRoadsRequest">
            <summary>
            NearestRoads request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.NearestRoads.Request.NearestRoadsRequest.BaseUrl">
            <inheritdoc />
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.NearestRoads.Request.NearestRoadsRequest.Points">
            <summary>
            points — A list of latitude/longitude pairs. Latitude and longitude values should be separated by commas. 
            Coordinates should be separated by the pipe character: "|". 
            For example: points=60.170880,24.942795|60.170879,24.942796|60.170877,24.942796.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Roads.NearestRoads.Request.NearestRoadsRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.Roads.NearestRoads.Response.NearestRoadsResponse">
            <summary>
            NearestRoads Response.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Roads.SnapToRoads.Request.SnapToRoadsRequest">
            <summary>
            SnapToRoads request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.SnapToRoads.Request.SnapToRoadsRequest.BaseUrl">
            <inheritdoc />
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.SnapToRoads.Request.SnapToRoadsRequest.Path">
            <summary>
            path — The path to be snapped (required). The path parameter accepts a list of latitude/longitude pairs. Latitude and longitude values should be separated by commas. 
            Coordinates should be separated by the pipe character: "|". For example: path=60.170880,24.942795|60.170879,24.942796|60.170877,24.942796.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.SnapToRoads.Request.SnapToRoadsRequest.Interpolate">
            <summary>
            Interpolate — Whether to interpolate a path to include all points forming the full road-geometry. 
            When true, additional interpolated points will also be returned, resulting in a path that smoothly follows the geometry of the road, even around corners and through tunnels. 
            Interpolated paths will most likely contain more points than the original path. Defaults to false.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Roads.SnapToRoads.Request.SnapToRoadsRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.Roads.SnapToRoads.Response.SnapToRoadsResponse">
            <summary>
            SnapToRoads Response.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Roads.SpeedLimits.Request.SpeedLimitsRequest">
            <summary>
            Speed limits request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.SpeedLimits.Request.SpeedLimitsRequest.BaseUrl">
            <inheritdoc />
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.SpeedLimits.Request.SpeedLimitsRequest.Path">
            <summary>
            path — The path to be snapped (required or PlaceIds). 
            The path parameter accepts a list of latitude/longitude pairs. 
            Latitude and longitude values should be separated by commas. 
            Coordinates should be separated by the pipe character: "|". For example: path=60.170880,24.942795|60.170879,24.942796|60.170877,24.942796.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.SpeedLimits.Request.SpeedLimitsRequest.Places">
            <summary>
            placeId — The place ID of the road segment. 
            Place IDs are returned by the snapToRoads method. You can pass up to 100 placeIds with each request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.SpeedLimits.Request.SpeedLimitsRequest.Unit">
            <summary>
            units (optional) — Whether to return speed limits in kilometers or miles per hour. This can be set to either KPH or MPH. Defaults to KPH.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.Roads.SpeedLimits.Request.SpeedLimitsRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.Roads.SpeedLimits.Response.SpeedLimit">
            <summary>
            Speed Limit.
            Each element consists of the following fields.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.SpeedLimits.Response.SpeedLimit.PlaceId">
            <summary>
            PlaceId — A unique identifier for a place. 
            All place IDs returned by the Google Maps Roads API correspond to road segments. 
            Place IDs can be used with other Google APIs, including the Google Places API and the Google Maps JavaScript API. 
            For example, if you need to get road names for the snapped points returned by the Google Maps Roads API, you can pass the placeId to the 
            Google Places API or the Google Maps Geocoding API. Within the Google Maps Roads API, you can pass the placeId to the speedLimit method to 
            determine the speed limit along that road segment.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.SpeedLimits.Response.SpeedLimit.Limit">
            <summary>
            SpeedLimit — The speed limit for that road segment.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.SpeedLimits.Response.SpeedLimit.Units">
            <summary>
            units — Returns either KPH or MPH.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.Roads.SpeedLimits.Response.SpeedLimitsResponse">
            <summary>
            SpeedLimits Response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.Roads.SpeedLimits.Response.SpeedLimitsResponse.SpeedLimits">
            <summary>
            SpeedLimits — A collection of road metadata. 
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.StaticMaps.Request.AnchorCoordinate">
            <summary>
            Anchor Coordinate.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.AnchorCoordinate.X">
            <summary>
            X.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.AnchorCoordinate.Y">
            <summary>
            Y.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.StaticMaps.Request.AnchorCoordinate.#ctor(System.Int32,System.Int32)">
            <summary>
            Constructor.
            </summary>
            <param name="x">The x coordinate.</param>
            <param name="y">The y coordinate.</param>
        </member>
        <member name="M:GoogleApi.Entities.Maps.StaticMaps.Request.AnchorCoordinate.ToString">
            <summary>
            Returns a string representation of a <see cref="T:GoogleApi.Entities.Maps.StaticMaps.Request.AnchorCoordinate"/>.
            </summary>
            <returns>The string representation.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.Anchor">
            <summary>
            Anchor.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.Anchor.Top">
            <summary>
            Top.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.Anchor.Bottom">
            <summary>
            Bottom.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.Anchor.Left">
            <summary>
            Left.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.Anchor.Right">
            <summary>
            Right.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.Anchor.Center">
            <summary>
            Center.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.Anchor.TopLeft">
            <summary>
            Top Left.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.Anchor.TopRight">
            <summary>
            Top Right.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.Anchor.BottomLeft">
            <summary>
            Bottom Left.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.Anchor.BottomRight">
            <summary>
            Bottom Right.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.Extensions.ImageFormatExtensions">
            <summary>
            Image Format Extensions.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.Extensions.ImageFormatExtensions.GetParameterName(GoogleApi.Entities.Maps.StaticMaps.Request.Enums.ImageFormat)">
            <summary>
            Gets the parameter name used for querying.
            </summary>
            <param name="format">The <inheritdoc cref="T:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.ImageFormat"/>.</param>
            <returns>The parameter name.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.ImageFormat">
            <summary>
            Image Format.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.ImageFormat.Png">
            <summary>
            Specifies the 8-bit PNG format (default).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.ImageFormat.Png32">
            <summary>
            specifies the 32-bit PNG format.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.ImageFormat.Gif">
            <summary>
            specifies the GIF format.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.ImageFormat.Jpg">
            <summary>
            specifies the JPEG compression format.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.ImageFormat.JpgBaseline">
            <summary>
            specifies a non-progressive JPEG compression format.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.MapScale">
            <summary>
            Map Scale.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.MapScale.Normal">
            <summary>
            Normal (default).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.MapScale.Large">
            <summary>
            Large. 
            Twice has many pixels as normal.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.MapScale.Huge">
            <summary>
            Huge. 
            Twice as many pixels as large.
            Only available to Google Maps APIs Premium Plan customers
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.MapType">
            <summary>
            Map Type.
            The Google Static Maps API creates maps in several formats, listed below.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.MapType.Roadmap">
            <summary>
            roadmap (default) specifies a standard roadmap image, as is normally shown on the Google Maps website. 
            If no maptype value is specified, the Google Static Maps API serves roadmap tiles by default.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.MapType.Satellite">
            <summary>
            Satellite specifies a satellite image.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.MapType.Hybrid">
            <summary>
            Hybrid specifies a hybrid of the satellite and roadmap image, showing a transparent layer of major streets and place names on the satellite image.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.MapType.Terrain">
            <summary>
            Terrain specifies a physical relief map image, showing terrain and vegetation.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.MarkerSize">
            <summary>
            Specifies the size of marker from the set {tiny, mid, small}. 
            If no size parameter is set, the marker will appear in its default (normal) size.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.MarkerSize.Normal">
            <summary>
            Normal (default).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.MarkerSize.Tiny">
            <summary>
            Tiny.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.MarkerSize.Mid">
            <summary>
            Mid.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.MarkerSize.Small">
            <summary>
            Small.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleElement">
            <summary>
            Elements are subdivisions of a feature.
            A road, for example, consists of the graphical line (the geometry) on the map, and also the text denoting its name (a label).
            The following elements are available, but note that a specific feature may support none, some, or all, of the elements:
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleElement.All">
            <summary>
            selects all elements of the specified feature. (default)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleElement.Geometry">
            <summary>
            selects all geometric elements of the specified feature.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleElement.Geometry_Fill">
            <summary>
            selects only the fill of the feature's geometry.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleElement.Geometry_Stroke">
            <summary>
            selects only the stroke of the feature's geometry.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleElement.Labels">
            <summary>
            selects the textual labels associated with the specified feature.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleElement.Labels_Icon">
            <summary>
            selects only the icon displayed within the feature's label.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleElement.Labels_Text">
            <summary>
            selects only the text of the label.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleElement.Labels_Text_Fill">
            <summary>
            selects only the fill of the label. The fill of a label is typically rendered as a colored outline that surrounds the label text.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleElement.Labels_Text_Stroke">
            <summary>
            selects only the stroke of the label's text.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature">
            <summary>
            Features, or feature types, are geographic characteristics on the map, including roads, parks, bodies of water, businesses, and more.
            The features form a category tree, with all as the root.If you don't specify a feature, all features are selected. Specifying a feature of all has the same effect.
            Some features contain child features you specify using a dot notation.For example, landscape.natural or road.local.
            If you specify only the parent feature, such as road, the styles you specify for the parent apply to all its children, such as road.local and road.highway.
            Note that parent features may include some elements that are not included in all of their child features.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.All">
            <summary>
            Selects all features.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Administrative">
            <summary>
            selects all administrative areas.
            Styling affects only the labels of administrative areas, not the geographical borders or fill.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Administrative_Country">
            <summary>
            selects countries.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Administrative_Land_Parcel">
            <summary>
            selects land parcels.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Administrative_Locality">
            <summary>
            selects localities.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Administrative_Neighborhood">
            <summary>
            selects neighborhoods.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Administrative_Province">
            <summary>
            selects provinces.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Landscape">
            <summary>
            selects all landscapes.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Landscape_Man_Made">
            <summary>
            selects man-made features, such as buildings and other structures.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Landscape_Natural">
            <summary>
            selects natural features, such as mountains, rivers, deserts, and glaciers.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Landscape_Natural_Landcover">
            <summary>
            selects land cover features, the physical material that covers the earth's surface, such as forests, grasslands, wetlands, and bare ground.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Landscape_Natural_Terrain">
            <summary>
            selects terrain features of a land surface, such as elevation, slope, and orientation.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Poi">
            <summary>
            selects all points of interest.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Poi_Attraction">
            <summary>
            selects tourist attractions.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Poi_Business">
            <summary>
            selects businesses.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Poi_Government">
            <summary>
            selects government buildings.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Poi_Medical">
            <summary>
            selects emergency services, including hospitals, pharmacies, police, doctors, and others.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Poi_Park">
            <summary>
            selects parks.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Poi_Place_Of_Worship">
            <summary>
            selects places of worship, including churches, temples, mosques, and others.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Poi_School">
            <summary>
            selects schools.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Poi_Sports_Complex">
            <summary>
            selects sports complexes.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Road">
            <summary>
            selects all roads.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Road_Arterial">
            <summary>
            selects arterial roads.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Road_Highway">
            <summary>
            selects highways.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Road_Highway_Controlled_Access">
            <summary>
            selects highways with controlled access.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Road_Local">
            <summary>
            selects local roads.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Transit">
            <summary>
            selects all transit stations and lines.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Transit_Line">
            <summary>
            selects transit lines.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Transit_Station">
            <summary>
            selects all transit stations.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Transit_Station_Airport">
            <summary>
            selects airports.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Transit_Station_Bus">
            <summary>
            selects bus stops.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Transit_Station_Rail">
            <summary>
            selects rail stations.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleFeature.Water">
            <summary>
            selects bodies of water.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleVisibility">
            <summary>
            Style Visibility.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleVisibility.On">
            <summary>
            On.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleVisibility.Off">
            <summary>
            Off.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StaticMaps.Request.Enums.StyleVisibility.Simplified">
            <summary>
            Simplified.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.StaticMaps.Request.MapMarker">
            <summary>
            Represents a set of location markers to be drawn on a map with certain style properties.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.MapMarker.Label">
            <summary>
            Label (optional) specifies a single uppercase alphanumeric character from the set {A-Z, 0-9}.
            The requirement for uppercase characters is new to this version of the API. 
            Note that default and mid sized markers are the only markers capable of displaying an alphanumeric-character parameter. 
            Tiny and small markers are not capable of displaying an alphanumeric-character.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.MapMarker.Color">
            <summary>
            Color (optional).
            Specifies a color either as a 24-bit (example: color=0xFFFFCC) or 32-bit hexadecimal value (example: color=0xFFFFCCFF), 
            or from the set {black, brown, green, purple, yellow, blue, gray, orange, red, white}.  
            When a 32-bit hex value is specified, the last two characters specify the 8-bit alpha transparency value.
            This value varies between 00 (completely transparent) and FF (completely opaque). 
            Note that transparencies are supported in paths, though they are not supported for markers.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.MapMarker.Size">
            <summary>
            Size: (optional) specifies the size of marker from the set {tiny, mid, small}. 
            If no size parameter is set, the marker will appear in its default (normal) size.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.MapMarker.Icon">
            <summary>
            Rather than use Google's marker icons, you are free to use your own custom icons instead. 
            You can use up to five unique custom icons per request. This limitation does not mean that you are limited to only 5 marked locations on your map.
            Each unique icon may be used with more than one markers location on your map.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.MapMarker.Locations">
            <summary>
            Each marker descriptor must contain a set of one or more locations defining where to place the marker on the map. 
            These locations may be either specified as latitude/longitude values or as addresses. 
            These locations are separated using the pipe character (|).
            The location parameters define the marker's location on the map. If the location is off the map, that marker will not appear in the constructed image provided 
            that center and zoom parameters are supplied. However, if these parameters are not supplied, the Google Static Maps API server will automatically 
            construct an image which contains the supplied markers.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.StaticMaps.Request.MapMarker.ToString">
            <summary>
            Returns a string representation of a <see cref="T:GoogleApi.Entities.Maps.StaticMaps.Request.MapMarker"/>.
            </summary>
            <returns>The string representation.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Maps.StaticMaps.Request.MapMarkerIcon">
            <summary>
            Map Marker Icon.
            Rather than use Google's marker icons, you are free to use your own custom icons instead. 
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.MapMarkerIcon.Url">
            <summary>
            Rather than use Google's marker icons, you are free to use your own custom icons instead. 
            Custom icons are specified using the icon descriptor in the markers parameter. For example: markers=icon:URLofIcon|markerLocation.
            Specify the icon using a URL(which should be URL-encoded). You can use URLs created by URL-shortening services such as https://goo.gl. 
            Most URL-shortening services have the advantage of automatically encoding URLs.  You may specify an anchor point for the custom icon.
            Icon images may be in PNG, JPEG or GIF formats, though PNG is recommended. Icons may be up to 4096 pixels maximum size (64x64 for square images).
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.MapMarkerIcon.Anchor">
            <summary>
            The anchor point sets how the icon is placed in relation to the specified markers locations.
            By default, the anchor point of a custom icon is the bottom center of the icon image.
            You can specify a different anchor point using the anchor descriptor in conjunction with your icon.
            Set the anchor as an x, y point of the icon (such as 10,5), or as a predefined alignment using one of the following values: top, bottom, left, right, center, topleft, topright, bottomleft, or bottomright.For example:
            markers= anchor:bottomright|icon:URLofIcon|markerLocation1|markerLocation2
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.MapMarkerIcon.AnchorCoordinate">
            <summary>
            Overrides <see cref="P:GoogleApi.Entities.Maps.StaticMaps.Request.MapMarkerIcon.Anchor"/>, by a specific anchor coordinate.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.StaticMaps.Request.MapMarkerIcon.#ctor(System.String)">
            <summary>
            Constructor.
            </summary>
            <param name="url">The url</param>
        </member>
        <member name="M:GoogleApi.Entities.Maps.StaticMaps.Request.MapMarkerIcon.ToString">
            <summary>
            Returns a string representation of a <see cref="T:GoogleApi.Entities.Maps.StaticMaps.Request.MapMarkerIcon"/>.
            </summary>
            <returns>The string representation.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Maps.StaticMaps.Request.MapPath">
            <summary>
            Map Path.
            Defines a single path of two or more connected points to overlay on the image at specified locations. 
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.MapPath.Weight">
            <summary>
            Weight (optional) specifies the thickness of the path in pixels. 
            If no weight parameter is set, the path will appear in its default thickness (5 pixels).
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.MapPath.Geodesic">
            <summary>
            Geodesic: (optional) indicates that the requested path should be interpreted as a geodesic line that follows the curvature of the earth.
            When false, the path is rendered as a straight line in screen space. 
            Defaults to false.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.MapPath.Color">
            <summary>
            Color (optional) specifies a color either as a 24-bit (example: color=0xFFFFCC) or 32-bit hexadecimal value (example: color=0xFFFFCCFF), 
            or from the set {black, brown, green, purple, yellow, blue, gray, orange, red, white}.  
            When a 32-bit hex value is specified, the last two characters specify the 8-bit alpha transparency value.
            This value varies between 00 (completely transparent) and FF (completely opaque). 
            Note that transparencies are supported in paths, though they are not supported for markers.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.MapPath.FillColor">
            <summary>
            Fillcolor (optional) indicates both that the path marks off a polygonal area and specifies the fill color to use as an overlay within that area. 
            The set of locations following need not be a "closed" loop; the Google Static Maps API server will automatically join the first and last points. 
            Note, however, that any stroke on the exterior of the filled area will not be closed unless you specifically provide the same beginning and end location.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.MapPath.Points">
            <summary>
            Gets or sets the collection of points for this path
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.StaticMaps.Request.MapPath.ToString">
            <summary>
            Returns a string representation of a <see cref="T:GoogleApi.Entities.Maps.StaticMaps.Request.MapPath"/>.
            </summary>
            <returns>The string representation.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Maps.StaticMaps.Request.MapStyle">
            <summary>
            Customize the presentation of the standard Google map by applying your own styles when using the Google Static Maps API.
            You can change the visual display of features such as roads, parks, built-up areas, and other points of interest.Change their color or style to emphasize 
            particular content, complement surrounding content on the page, or even hide features completely.
            Each style declaration may contain the following arguments, separated by pipe characters ("|").
            https://developers.google.com/maps/documentation/static-maps/styling
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.MapStyle.Feature">
            <summary>
            Feature (optional) indicates the features to select for this style modification.
            Features include things on the map, like roads, parks, or other points of interest.
            If no features is present, the specified style applies to all features.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.MapStyle.Element">
            <summary>
            element(optional) indicates the element(s) of the specified feature to select for this style modification. 
            Elements are characteristics of a feature, such as geometry or labels.
            If no element argument is present, the style applies to all elements of the specified feature.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.MapStyle.Style">
            <summary>
            A set of style rules (mandatory) to apply to the specified feature(s) and element(s). 
            The API applies the rules in the order in which they appear in the style declaration.
            You can include any number of rules, within the normal URL-length constraints of the Google Static Maps API.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.StaticMaps.Request.MapStyle.ToString">
            <summary>
            Returns a string representation of a <see cref="T:GoogleApi.Entities.Maps.StaticMaps.Request.MapStyle"/>.
            </summary>
            <returns>The string representation.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Maps.StaticMaps.Request.StaticMapsRequest">
            <summary>
            Static Map Request.
            The Google Static Maps API lets you embed a Google Maps image on your web page without requiring JavaScript or any dynamic page loading. 
            The Google Static Maps API service creates your map based on URL parameters sent through a standard HTTP request and returns the map as an image you can 
            display on your web page.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StaticMapsRequest.BaseUrl">
            <inheritdoc />
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StaticMapsRequest.Center">
            <summary>
            center (required if markers not present) defines the center of the map, equidistant from all edges of the map. 
            This parameter takes a location as either a comma-separated {latitude,longitude} pair (e.g. "40.714728,-73.998672") or a string address (e.g. "city hall, new york, ny") 
            identifying a unique location on the face of the earth. For more information, see Locations below.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StaticMapsRequest.ZoomLevel">
            <summary>
            Zoom (required if markers not present) defines the zoom level of the map, which determines the magnification level of the map. 
            This parameter takes a numerical value corresponding to the zoom level of the region desired. For more information, see zoom levels below.
            Maps on Google Maps have an integer 'zoom level' which defines the resolution of the current view. 
            Zoom levels between 0 (the lowest zoom level, in which the entire world can be seen on one map) and 21+ (down to streets and individual buildings) 
            are possible within the default roadmap view. Building outlines, where available, appear on the map around zoom level 17. 
            This value differs from area to area and can change over time as the data evolves.
            Google Maps sets zoom level 0 to encompass the entire earth.Each succeeding zoom level doubles the precision in both horizontal and vertical dimensions.
            Note: not all zoom levels appear at all locations on the earth. 
            Zoom levels vary depending on location, as data in some parts of the globe is more granular than in other locations.
            If you send a request for a zoom level at which no map tiles are available, the Google Static Maps API will return a map showing the maximum zoom level available 
            at that location. The following list shows the approximate level of detail you can expect to see at each zoom level:
            - 1: World
            - 5: Landmass/continent
            - 10: City
            - 15: Streets
            - 20: Buildings
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StaticMapsRequest.Size">
            <summary>
            Size (required) defines the rectangular dimensions of the map image. 
            This parameter takes a string of the form {horizontal_value}x{vertical_value}. For example, 500x400 defines a map 500 pixels wide by 400 pixels high. 
            Maps smaller than 180 pixels in width will display a reduced-size Google logo. 
            This parameter is affected by the scale parameter, described below; the final output size is the product of the size and scale values.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StaticMapsRequest.Type">
            <summary>
            Defines the type of map to construct. There are several possible
            maptype values, including roadmap, satellite, hybrid, and terrain. (optional)
            </summary>
            <remarks>http://code.google.com/apis/maps/documentation/staticmaps/#MapTypes</remarks>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StaticMapsRequest.Scale">
            <summary>
            Scale (optional) affects the number of pixels that are returned. scale=2 returns twice as many pixels as scale=1 while retaining the same coverage area and 
            level of detail (i.e. the contents of the map don't change). This is useful when developing for high-resolution displays, or when generating a map for printing. 
            The default value is 1. Accepted values are 2 and 4 (4 is only available to Google Maps APIs Premium Plan customers.) 
            See Scale Values for more information: https://developers.google.com/maps/documentation/static-maps/intro#scale_values
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StaticMapsRequest.Format">
            <summary>
            Format (optional) defines the format of the resulting image. By default, the Google Static Maps API creates PNG images. 
            There are several possible formats including GIF, JPEG and PNG types. Which format you use depends on how you intend to present the image. 
            JPEG typically provides greater compression, while GIF and PNG provide greater detail. For more information, see Image Formats.
            greater compression, while GIF and PNG provide greater detail. (optional)
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StaticMapsRequest.Language">
            <summary>
            Language (optional) defines the language to use for display of labels on map tiles. 
            Note that this parameter is only supported for some country tiles; if the specific language requested is not supported for the tile set, 
            then the default language for that tileset will be used.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StaticMapsRequest.Region">
            <summary>
            region (optional) defines the appropriate borders to display, based on geo-political sensitivities. 
            Accepts a region code specified as a two-character ccTLD ('top-level domain') value
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StaticMapsRequest.Paths">
            <summary>
            Paths (optional) defines a single path of two or more connected points to overlay on the image at specified locations. 
            This parameter takes a string of point definitions separated by the pipe character (|), or an encoded polyline using the enc: prefix within 
            the location declaration of the path. You may supply additional paths by adding additional path parameters. 
            Note that if you supply a path for a map, you do not need to specify the (normally required) center and zoom parameters. 
            For more information, see Google Static Maps API Paths below. https://developers.google.com/maps/documentation/static-maps/intro#Paths
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StaticMapsRequest.Styles">
            <summary>
            Style (optional) defines a custom style to alter the presentation of specific features (roads, parks, and other features) of the map. 
            This parameter takes features and element arguments identifying the features to style, and a set of style operations to apply to the selected features.
            You can supply multiple styles by adding additional style parameters.
            For more information, see the guide to styled maps.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StaticMapsRequest.Visibles">
            <summary>
            Visibles (optional) specifies one or more locations that should remain visible on the map, though no markers or other indicators will be displayed. 
            Use this parameter to ensure that certain features or map locations are shown on the Google Static Maps API.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StaticMapsRequest.Markers">
            <summary>
            Markers (optional) define one or more markers to attach to the image at specified locations. 
            This parameter takes a single marker definition with parameters separated by the pipe character (|). 
            Multiple markers may be placed within the same markers parameter as long as they exhibit the same style; 
            you may add additional markers of differing styles by adding additional markers parameters. Note that if you supply markers for a map, 
            you do not need to specify the (normally required) center and zoom parameters. 
            For more information, see Google Static Maps API Markers below. https://developers.google.com/maps/documentation/static-maps/intro#Markers
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.StaticMaps.Request.StaticMapsRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.StaticMaps.Request.StyleRule">
            <summary>
            Style rules are formatting options which are applied to the features and elements specified within each style declaration.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StyleRule.Hue">
            <summary>
            hue(an RGB hex string of format #RRGGBB) indicates the basic color.
            Note: This option sets the hue while keeping the saturation and lightness specified in the default Google style(or in other style options you define on the map).
            The resulting color is relative to the style of the base map.
            If Google makes any changes to the base map style, the changes affect your map's features styled with hue.
            It's better to use the absolute color styler if you can.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StyleRule.Lightness">
            <summary>
            lightness(a floating point value between -100 and 100) indicates the percentage change in brightness of the element.
            Negative values increase darkness (where -100 specifies black) while positive values increase brightness(where +100 specifies white).
            Note: This option sets the lightness while keeping the saturation and hue specified in the default Google style(or in other style options you define on the map).
            The resulting color is relative to the style of the base map.
            If Google makes any changes to the base map style, the changes affect your map's features styled with lightness.
            It's better to use the absolute color styler if you can.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StyleRule.Saturation">
            <summary>
            saturation(a floating point value between -100 and 100) indicates the percentage change in intensity of the basic color to apply to the element.
            Note: This option sets the saturation while keeping the hue and lightness specified in the default Google style(or in other style options you define on the map).
            The resulting color is relative to the style of the base map.
            If Google makes any changes to the base map style, the changes affect your map's features styled with saturation.
            It's better to use the absolute color styler if you can.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StyleRule.Gamma">
            <summary>
            gamma(a floating point value between 0.01 and 10.0, where 1.0 applies no correction) indicates the amount of gamma correction to apply to the element.
            Gamma corrections modify the lightness of colors in a non-linear fashion, while not affecting white or black values.Gamma correction is typically used to modify the contrast of multiple elements.
            For example, you can modify the gamma to increase or decrease the contrast between the edges and interiors of elements.
            Note: This option adjusts the lightness relative to the default Google style, using a gamma curve.
            If Google makes any changes to the base map style, the changes affect your map's features styled with gamma.
            It's better to use the absolute color styler if you can.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StyleRule.InvertLightness">
            <summary>
            invert_lightness(if true) inverts the existing lightness.
            This is useful, for example, for quickly switching to a darker map with white text.
            Note: This option simply inverts the default Google style.
            If Google makes any changes to the base map style, the changes affect your map's features styled with invert_lightness.
            It's better to use the absolute color styler if you can.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StyleRule.Visibility">
            <summary>
            visibility(on, off, or simplified) indicates whether and how the element appears on the map.
            A simplified visibility removes some style features from the affected features; roads, for example, are simplified into thinner lines without outlines,
            while parks lose their label text but retain the label icon.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StyleRule.Color">
            <summary>
            color(an RGB hex string of format #RRGGBB) sets the color of the feature.
            weight(an integer value, greater than or equal to zero) sets the weight of the feature, in pixels.
            Setting the weight to a high value may result in clipping near tile borders.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StaticMaps.Request.StyleRule.Weight">
            <summary>
            weight(an integer value, greater than or equal to zero) sets the weight of the feature, in pixels.
            Setting the weight to a high value may result in clipping near tile borders.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.StaticMaps.Request.StyleRule.ToString">
            <summary>
            Returns a string representation of a <see cref="T:GoogleApi.Entities.Maps.StaticMaps.Request.StyleRule"/>.
            </summary>
            <returns>The string representation.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Maps.StaticMaps.Response.StaticMapsResponse">
            <summary>
            Static Maps Response.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.StreetView.Request.Enums.Source">
            <summary>
            Source
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StreetView.Request.Enums.Source.Default">
            <summary>
            default uses the default sources for Street View; searches are not limited to specific sources.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Maps.StreetView.Request.Enums.Source.Outdoor">
            <summary>
            outdoor limits searches to outdoor collections.
            Indoor collections are not included in search results. Note that outdoor panoramas may not exist for the specified location.
            Also note that the search only returns panoramas where it's possible to determine whether they're indoors or outdoors.
            For example, PhotoSpheres are not returned because it's unknown whether they are indoors or outdoors.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.StreetView.Request.StreetViewRequest">
            <summary>
            Street View Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StreetView.Request.StreetViewRequest.BaseUrl">
            <inheritdoc />
        </member>
        <member name="P:GoogleApi.Entities.Maps.StreetView.Request.StreetViewRequest.Location">
            <summary>
            location can be either a text string (such as Chagrin Falls, OH) or a lat/lng value (40.457375,-80.009353). 
            The Google Street View Image API will snap to the panorama photographed closest to this location. 
            When an address text string is provided, the API may use a different camera location to better display the specified location. When a lat/lng is provided, 
            the API searches a 50 meter radius for a photograph closest to this location. 
            Because Street View imagery is periodically refreshed, and photographs may be taken from slightly different positions each time, 
            it's possible that your location may snap to a different panorama when imagery is updated.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StreetView.Request.StreetViewRequest.PanoramaId">
            <summary>
            Pano is a specific panorama ID. These are generally stable
            Either Address, Location or Pano is required.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StreetView.Request.StreetViewRequest.Size">
            <summary>
            Size specifies the output size of the image in pixels. Required.
            Size is specified as {width}x{height} - for example, size=600x400 returns an image 600 pixels wide, and 400 high.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StreetView.Request.StreetViewRequest.Pitch">
            <summary>
            Pitch (default is 0) specifies the up or down angle of the camera relative to the Street View vehicle. 
            This is often, but not always, flat horizontal. Positive values angle the camera up (with 90 degrees indicating straight up); 
            negative values angle the camera down (with -90 indicating straight down).
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StreetView.Request.StreetViewRequest.Heading">
            <summary>
            Heading indicates the compass heading of the camera. 
            Accepted values are from 0 to 360 (both values indicating North, with 90 indicating East, and 180 South). 
            If no heading is specified, a value will be calculated that directs the camera towards the specified location, 
            from the point at which the closest photograph was taken.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StreetView.Request.StreetViewRequest.FieldOfView">
            <summary>
            Fov (default is 90) determines the horizontal field of view of the image. 
            The field of view is expressed in degrees, with a maximum allowed value of 120. 
            When dealing with a fixed-size viewport, as with a Street View image of a set size, 
            field of view in essence represents zoom, with smaller numbers indicating a higher level of zoom.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StreetView.Request.StreetViewRequest.Radius">
            <summary>
            radius(default is 50) sets a radius, specified in meters, in which to search for a panorama,
            centered on the given latitude and longitude.Valid values are non-negative integers.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StreetView.Request.StreetViewRequest.ReturnErrorCode">
            <summary>
            return_error_code indicates whether the API should return an error code when no image is found(404 NOT FOUND),
            or in response to an invalid request(400 BAD REQUEST). Valid values are true and false.
            If set to true, an error message is returned in place of the generic gray image.
            This eliminates the need to make a separate call to check for image availability.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.StreetView.Request.StreetViewRequest.Source">
            <summary>
            source (default is default) limits Street View searches to selected sources. Valid values are
            </summary>
            <returns></returns>
        </member>
        <member name="M:GoogleApi.Entities.Maps.StreetView.Request.StreetViewRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.StreetView.Response.StreetViewResponse">
            <summary>
            Street View Response.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Maps.TimeZone.Request.TimeZoneRequest">
            <summary>
            TimeZone request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.TimeZone.Request.TimeZoneRequest.BaseUrl">
            <inheritdoc />
        </member>
        <member name="P:GoogleApi.Entities.Maps.TimeZone.Request.TimeZoneRequest.Location">
            <summary>
            A comma-separated lat,lng tuple (eg. location=-33.86,151.20), representing the location to look up
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.TimeZone.Request.TimeZoneRequest.TimeStamp">
            <summary>
            Timestamp specifies the desired time as seconds since midnight, January 1, 1970 UTC. 
            The Time Zone API uses the timestamp to determine whether or not Daylight Savings should be applied. 
            Times before 1970 can be expressed as negative values.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.TimeZone.Request.TimeZoneRequest.Language">
            <summary>
            The language in which to return results. See the list of supported domain languages. 
            Note that we often update supported languages so this list may not be exhaustive. Defaults to en.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Maps.TimeZone.Request.TimeZoneRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Maps.TimeZone.Response.TimeZoneResponse">
            <summary>
            TimeZone Response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.TimeZone.Response.TimeZoneResponse.OffSet">
            <summary>
            DstOffset: the offset for daylight-savings time in seconds. 
            This will be zero if the time zone is not in Daylight Savings Time during the specified timestamp.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.TimeZone.Response.TimeZoneResponse.RawOffSet">
            <summary>
            RawOffset: the offset from UTC (in seconds) for the given location. 
            This does not take into effect daylight savings.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.TimeZone.Response.TimeZoneResponse.TimeZoneId">
            <summary>
            TimeZoneId: a string containing the ID of the time zone, such as "America/Los_Angeles" or "Australia/Sydney".
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Maps.TimeZone.Response.TimeZoneResponse.TimeZoneName">
            <summary>
            TimeZoneName: a string containing the long form name of the time zone. 
            This field will be localized if the language parameter is set. eg. "Pacific Daylight Time" or "Australian.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.AutoComplete.Request.Enums.RestrictPlaceType">
            <summary>
            You may restrict results from a Place Autocomplete request to be of a certain type by passing a types parameter. 
            The parameter specifies a type or a type collection, as listed in the supported types below. If nothing is specified, all types are returned. 
            In general only a single type is allowed.  The exception is that you can safely mix the geocode and establishment types, 
            but note that this will have the same effect as specifying no types. 
            https://developers.google.com/places/supported_types#table3
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.AutoComplete.Request.Enums.RestrictPlaceType.Geocode">
            <summary>
            Geocode instructs the Place Autocomplete service to return only geocoding results, 
            rather than business results. Generally, you use this request to disambiguate results where the location specified may be indeterminate.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.AutoComplete.Request.Enums.RestrictPlaceType.Address">
            <summary>
            Address instructs the Place Autocomplete service to return only geocoding results with a precise address. 
            Generally, you use this request when you know the user will be looking for a fully specified address.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.AutoComplete.Request.Enums.RestrictPlaceType.Establishment">
            <summary>
            Establishment instructs the Place Autocomplete service to return only business results.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.AutoComplete.Request.Enums.RestrictPlaceType.Regions">
            <summary>
            The (regions) type collection instructs the Places service to return any result matching the following types: 
            locality, sublocality, postal_code, country, administrative_area_level_1, administrative_area_level_2
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.AutoComplete.Request.Enums.RestrictPlaceType.Cities">
            <summary>
            The (cities) type collection instructs the Places service to return results that match locality or administrative_area_level_3.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.AutoComplete.Request.PlacesAutoCompleteRequest">
            <summary>
            The Google Places API is a service that returns information about a "place" (hereafter referred to as a Place) — defined within this API as an establishment, 
            a geographic location, or prominent point of interest — using an HTTP request. Place requests specify locations as latitude/longitude coordinates.
            Two basic Place requests are available: a Place Search request and a Place Details request. Generally, a Place Search request is used to return candidate matches, 
            while a Place Details request returns more specific information about a Place.
            This service is designed for processing place requests generated by a user for placement of application content on a map; 
            this service is not designed to respond to batch of offline queries, which are a violation of its terms of use.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.AutoComplete.Request.PlacesAutoCompleteRequest.BaseUrl">
            <summary>
            Base Url.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.AutoComplete.Request.PlacesAutoCompleteRequest.Input">
            <summary>
            The text string on which to search. The Place service will return candidate matches based on this string and order results based on their perceived relevance.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.AutoComplete.Request.PlacesAutoCompleteRequest.Offset">
            <summary>
            The character position in the input term at which the service uses text for predictions. 
            For example, if the input is 'Googl' and the completion point is 3, the service will match on 'Goo'. 
            The offset should generally be set to the position of the text caret. If no offset is supplied, the service will use the entire term.        
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.AutoComplete.Request.PlacesAutoCompleteRequest.SessionToken">
            <summary>
            Place Autocomplete can use session tokens to group together autocomplete requests for billing purposes.
            A session consists of the activities required to resolve user input to a place.
            When a session token is passed (using the optional sessiontoken parameter), 
            autocompleterequests are not billed independently, but are instead billed once after a full 
            autocompleteresult is returned. If the sessiontoken parameter is omitted, each request is billed independently.
            See the pricing sheet for details.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.AutoComplete.Request.PlacesAutoCompleteRequest.Location">
            <summary>
            The point around which you wish to retrieve Place information.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.AutoComplete.Request.PlacesAutoCompleteRequest.Origin">
            <summary>
            The origin point from which to calculate straight-line distance to the destination (returned as distance_meters).
            If this value is omitted, straight-line distance will not be returned.
            Must be specified as latitude,longitude.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.AutoComplete.Request.PlacesAutoCompleteRequest.Radius">
            <summary>
            The distance (in meters) within which to return Place results. 
            Note that setting a radius biases results to the indicated area, but may not fully restrict results to the specified area. 
            See Location Biasing below.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.AutoComplete.Request.PlacesAutoCompleteRequest.Strictbounds">
            <summary>
            Strictbounds.
            Returns only those places that are strictly within the region defined by location and radius. 
            This is a restriction, rather than a bias, meaning that results outside this region will not be returned even if they match the user input.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.AutoComplete.Request.PlacesAutoCompleteRequest.Language">
            <summary>
            The language in which to return results. See the supported list of domain languages. 
            Note that we often update supported languages so this list may not be exhaustive. 
            If language is not supplied, the Place service will attempt to use the native language of the domain from which the request is sent.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.AutoComplete.Request.PlacesAutoCompleteRequest.Types">
            <summary>
            The types of Place results to return. See Place Types below. If no type is specified, all types will be returned.
            https://developers.google.com/places/supported_types#table3
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.AutoComplete.Request.PlacesAutoCompleteRequest.Components">
            <summary>
            The component filters, separated by a pipe (|). 
            Each component filter consists of a component:value pair and will fully restrict the results from the geocoder. 
            For more information see Component Filtering.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Places.AutoComplete.Request.PlacesAutoCompleteRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Places.AutoComplete.Response.PlacesAutoCompleteResponse">
            <summary>
            When the Places service returns JSON results from a search, 
            it places them within a predictions array.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.AutoComplete.Response.PlacesAutoCompleteResponse.Predictions">
            <summary>
            Contains an array of predictions, with information about the prediction.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.BasePlacesRequest">
            <summary>
            Base abstract class for Places requests.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.BasePlacesRequest.BaseUrl">
            <summary>
            Base Url.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Places.BasePlacesRequest.GetQueryStringParameters">
            <summary>
            See <see cref="M:GoogleApi.Entities.BaseRequest.GetQueryStringParameters"/>.
            </summary>
            <returns>The <see cref="T:System.Collections.Generic.IList`1"/> collection.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Places.BasePlacesResponse">
            <summary>
            Base abstract class for places responses.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Common.AlternativePlace">
            <summary>
            Alternative Place.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.AlternativePlace.PlaceId">
            <summary>
            PlaceId — The most likely reason for a place to have an alternative place ID is if your application adds a place and receives an application-scoped place ID, 
            then later receives a Google-scoped place ID after passing the moderation process.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.AlternativePlace.Scope">
            <summary>
            Scope — Indicates the scope of the Alternative PlaceId.
            The scope of an alternative place ID will always be APP, indicating that the alternative place ID is recognised by your application only.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Common.Enums.PriceLevel">
            <summary>
            Specifies the order in which results are listed for place searches.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Common.Enums.PriceLevel.Free">
            <summary>
            Free.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Common.Enums.PriceLevel.Inexpensive">
            <summary>
            Inexpensive.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Common.Enums.PriceLevel.Moderate">
            <summary>
            Moderate.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Common.Enums.PriceLevel.Expensive">
            <summary>
            Expensive.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Common.Enums.PriceLevel.VeryExpensive">
            <summary>
            Very Expensive.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Common.Enums.Scope">
            <summary>
            Scope.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Common.Enums.Scope.App">
            <summary>
            The place ID is recognised by your application only. 
            This is because your application added the place, and the place has not yet passed the moderation process.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Common.Enums.Scope.Google">
            <summary>
            The place ID is available to other applications and on Google Maps
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Common.MatchedSubstring">
            <summary>
            The location of the entered term in the prediction result text, 
            so that the term can be highlighted if desired.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.MatchedSubstring.Offset">
            <summary>
            Offset.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.MatchedSubstring.Length">
            <summary>
            Length.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Common.OpeningHours">
            <summary>
            Opening Hours.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.OpeningHours.OpenNow">
            <summary>
            OpenNow is a boolean value indicating if the Place is open at the current time.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.OpeningHours.Periods">
            <summary>
            periods[] is an array of opening periods covering seven days, starting from Sunday, in chronological order.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.OpeningHours.WeekdayTexts">
            <summary>
            WeekdayTexts is an array of seven strings representing the formatted opening hours for each day of the week. 
            If a language parameter was specified in the Place Details request, the Places Service will format and localize the opening hours appropriately for that language. 
            The ordering of the elements in this array depends on the language parameter. Some languages start the week on Monday while others start on Sunday.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Common.Photo">
            <summary>
            Photo.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.Photo.PhotoReference">
            <summary>
            PhotoReference — a string used to identify the photo when you perform a Photo request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.Photo.Height">
            <summary>
            Height — the maximum height of the image.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.Photo.Width">
            <summary>
            Width — the maximum width of the image.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.Photo.HtmlAttributions">
            <summary>
            HtmlAttributions — contains any required attributions. 
            This field will always be present, but may be empty.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Common.Prediction">
            <summary>
            Prediction.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.Prediction.PlaceId">
            <summary>
            PlaceId is a textual identifier that uniquely identifies a place. 
            To retrieve information about the place, pass this identifier in the placeId field of a Google Places API Web Service request
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.Prediction.Description">
            <summary>
            Description contains the human-readable name for the returned result. 
            For establishment results, this is usually the business name.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.Prediction.StructuredFormatting">
            <summary>
            Structured formatting.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.Prediction.Terms">
            <summary>
            Terms contains an array of terms identifying each section of the returned description (a section of the description is generally terminated with a comma). 
            Each entry in the array has a value field, containing the text of the term, and an offset field, defining the start position of this term in the description, 
            measured in Unicode characters.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.Prediction.Types">
            <summary>
            Types is an array indicating the type of the prediction.
            </summary>        
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.Prediction.MatchedSubstrings">
            <summary>
            MatchedSubstring contains an offset value and a length. 
            These describe the location of the entered term in the prediction result text, so that the term can be highlighted if desired.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Common.StructuredFormatting">
            <summary>
            Structured formatting.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.StructuredFormatting.MainText">
            <summary>
            Main text.
            Contains the main text of a prediction, usually the name of the place.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.StructuredFormatting.MainTextMatchedSubstrings">
            <summary>
            Main text matched substrings.
            Contains an array with offset value and length.
            These describe the location of the entered term in the prediction result text, so that the term can be highlighted if desired.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.StructuredFormatting.SecondaryText">
            <summary>
            Secondary text.
            Contains the secondary text of a prediction, usually the location of the place.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.StructuredFormatting.SecondaryTextMatchedSubstrings">
            <summary>
            Secondary text matched substrings.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Common.Term">
            <summary>
            Term.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.Term.Value">
            <summary>
            Containing the text of the term.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Common.Term.Offset">
            <summary>
            Defining the start position of this term in the description, measured in Unicode characters.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Details.Request.Enums.Extensions">
            <summary>
            Extensions.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.Extensions.None">
            <summary>
            None.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.Extensions.ReviewSummary">
            <summary>
            Includes a rich and concise review curated by Google's editorial staff.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes">
            <summary>
            Field Types.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Address_Component">
            <summary>
            Address Component (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Adr_Address">
            <summary>
            Adr Address (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Formatted_Address">
            <summary>
            Formatted Address (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Geometry">
            <summary>
            Geometry (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Icon">
            <summary>
            Icon (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Id">
            <summary>
            Id (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Name">
            <summary>
            Name (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Photo">
            <summary>
            Photo (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Place_Id">
            <summary>
            Place_Id (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Plus_Code">
            <summary>
            Plus_Code (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Type">
            <summary>
            Type (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Url">
            <summary>
            Url (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Utc_Offset">
            <summary>
            Utc Offset (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Vicinity">
            <summary>
            Vicinity (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Formatted_Phone_Number">
            <summary>
            Formatted Phone Number (billing: contact).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.International_Phone_Number">
            <summary>
            International Phone Number (billing: contact).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Opening_Hours">
            <summary>
            Opening Hours (billing: contact).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Website">
            <summary>
            Website (billing: contact).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Price_Level">
            <summary>
            Price Level (billing: atmosphere)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Rating">
            <summary>
            Rating (billing: atmosphere).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Review">
            <summary>
            Review (billing: atmosphere).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.User_Ratings_Total">
            <summary>
            User Ratings Total (billing: atmosphere).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Business_Status">
            <summary>
            Business Status.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Basic">
            <summary>
            Basic (all).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Contact">
            <summary>
            Contact (all).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Details.Request.Enums.FieldTypes.Atmosphere">
            <summary>
            Atmosphere (all).
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Details.Request.PlacesDetailsRequest">
            <summary>
            Places Details Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Request.PlacesDetailsRequest.BaseUrl">
            <summary>
            Base Url.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Request.PlacesDetailsRequest.PlaceId">
            <summary>
            A textual identifier that uniquely identifies a place, returned from a Place Search.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Request.PlacesDetailsRequest.Region">
            <summary>
            The region code, specified as a ccTLD ("top-level domain") two-character value.
            Most ccTLD codes are identical to ISO 3166-1 codes, with some notable exceptions.
            For example, the United Kingdom's ccTLD is "uk" (.co.uk) while its ISO 3166-1 code is "gb"
            (technically for the entity of "The United Kingdom of Great Britain and Northern Ireland").
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Request.PlacesDetailsRequest.SessionToken">
            <summary>
            A random string which identifies an autocomplete session for billing purposes.
            The session begins when the user starts typing a query, and concludes when they select a place and a
            call to Place Details is made.Each session can have multiple queries,
            followed by one place selection.The API key(s) used for each request within a session must belong to the same Google Cloud Console project.
            Once a session has concluded, the token is no longer valid; your app must generate a fresh token for each session.
            If the sessiontoken parameter is omitted, or if you reuse a session token,
            the session is charged as if no session token was provided (each request is billed separately).
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Request.PlacesDetailsRequest.Language">
            <summary>
            Language (optional) — The language code, indicating in which language the results should be returned, if possible. 
            See the list of supported languages and their codes: https://developers.google.com/maps/faq#languagesupport
            Note that we often update supported languages so this list may not be exhaustive.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Request.PlacesDetailsRequest.Fields">
            <summary>
            Fields (optional).
            Defaults to 'Basic'.
            One or more fields, specifying the types of place data to return, separated by a comma.
            Fields correspond to Place Details results, and are divided into three billing categories: Basic, Contact, and Atmosphere.
            Basic fields are billed at base rate, and incur no additional charges.Contact and Atmosphere fields are billed at a higher rate.
            See the pricing sheet for more information. Attributions (html_attributions) are always returned with every call, regardless of whether it has been requested.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Places.Details.Request.PlacesDetailsRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Places.Details.Response.Aspect">
            <summary>
            Aspect.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.Aspect.AspectRatings">
            <summary>
            Aspects contains a collection of AspectRating objects, each of which provides a rating of a single attribute of the establishment. 
            The first object in the collection is considered the primary aspect. Each AspectRating is described as:
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Details.Response.AspectRating">
            <summary>
            Aspect Rating.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.AspectRating.Type">
            <summary>
            Type the name of the aspect that is being rated. 
            E.g. atmosphere, service, food, overall, etc.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.AspectRating.Rating">
            <summary>
            Rating the user's rating for this particular aspect, from 0 to 3.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Details.Response.DayTime">
            <summary>
            DayTime.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DayTime.Day">
            <summary>
            Day a number from 0–6, corresponding to the days of the week, starting on Sunday. 
            For example, 2 means Tuesday.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DayTime.Time">
            <summary>
            Time may contain a time of day in 24-hour hhmm format (values are in the range 0000–2359). 
            The time will be reported in the Place’s timezone
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Details.Response.DetailsResult">
            <summary>
            Details Result.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.AddressComponents">
            <summary>
            address_components[] is an array of separate address components used to compose a given address. For example, 
            the address "111 8th Avenue, New York, NY" contains separate address components for "111" (the street number, "8th Avenue" (the route), 
            "New York" (the city) and "NY" (the US state). 
            Each address_component typically contains: ◦types[] is an array indicating the type of the address component.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.FormattedAddress">
            <summary>
            Formatted_address is a string containing the human-readable address of this place. Often this address is equivalent to the "postal address," 
            which sometimes differs from country to country. 
            This address is generally composed of one or more address_component fields.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.FormattedPhoneNumber">
            <summary>
            formatted_phone_number contains the Place's phone number in its local format. 
            For example, the formatted_phone_number for Google's Sydney, Australia office is (02) 9374 4000.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.AdrAddress">
            <summary>
            adr_address is a representation of the place's address in the adr microformat.
            http://microformats.org/wiki/adr
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.Geometry">
            <summary>
            Geometry contains a location.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.Icon">
            <summary>
            icon contains the URL of a suggested icon which may be displayed to the user when indicating this result on a map
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.InternationalPhoneNumber">
            <summary>
            international_phone_number contains the Place's phone number in international format. International format includes the country code, 
            and is prefixed with the plus (+) sign. 
            For example, the formatted_phone_number for Google's Sydney, Australia office is +61 2 9374 4000. 
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.Name">
            <summary>
            name contains the human-readable name for the returned result. For establishment results, this is usually the canonicalized business name.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.OpeningHours">
            <summary>
            opening_hours may contain information about the place opening hours.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.PlaceId">
            <summary>
            A textual identifier that uniquely identifies a place. To retrieve information about the place, 
            pass this identifier in the placeId field of a Places API request
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.Photos">
            <summary>
            An array of photo objects, each containing a reference to an image. A Place Details request may return up to ten photos.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.PriceLevel">
            <summary>
            price_level — The price level of the place, on a scale of 0 to 4. 
            The exact amount indicated by a specific value will vary from region to region. 
            Price levels are interpreted as follows:
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.BusinessStatus">
            <summary>
            Business Status.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.Rating">
            <summary>
            rating contains the Place's rating, from 0.0 to 5.0, based on user reviews. 
            For more granular ratings, inspect the contents of the aspects collection.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.UserRatingsTotal">
            <summary>
            The total number of user ratings.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.Review">
            <summary>
            Reviews, array of up to five reviews. 
            If a language parameter was specified in the Place Details request, 
            the Places Service will bias the results to prefer reviews written in that language. 
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.Types">
            <summary>
            Types contains an array of feature types describing the given result. See the list of supported types for more information. 
            XML responses include multiple type elements if more than one type is assigned to the result.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.Url">
            <summary>
            Url contains the official Google Place Page URL of this establishment. 
            Applications must link to or embed the Google Place page on any screen that shows detailed results about this Place to the user.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.Vicinity">
            <summary>
            Vicinity lists a simplified address for the Place, including the street name, street number, and locality, but not the province/state, postal code, or country. 
            For example, Google's Sydney, Australia office has a vicinity value of 48 Pirrama Road, Pyrmont.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.UtcOffset">
            <summary>
            UtcOffset contains the number of minutes this Place’s current timezone is offset from UTC. For example, for Places in Sydney, 
            Australia during daylight saving time this would be 660 (+11 hours from UTC), and for Places in California outside of daylight saving time this 
            would be -480 (-8 hours from UTC).
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.DetailsResult.Website">
            <summary>
            Website lists the authoritative website for this Place, such as a business' homepage.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Details.Response.Period">
            <summary>
            Period.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.Period.Open">
            <summary>
            Open contains a pair of day and time objects describing when the Place opens.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.Period.Close">
            <summary>
            Open contains a pair of day and time objects describing when the Place closes.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Details.Response.PlacesDetailsResponse">
            <summary>
            Places Details Response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.PlacesDetailsResponse.Result">
            <summary>
            Results contains an array of places, with information about the place. 
            See Place Search Results for information about these results. 
            The Places API returns up to 20 establishment results. Additionally, political results may be returned which serve to identify the area of the request.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Details.Response.Review">
            <summary>
            Review.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.Review.Aspect">
            <summary>
            aspects contains a collection of AspectRating objects, each of which provides a rating of a single attribute of the establishment. 
            The first object in the collection is considered the primary aspect.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.Review.AuthorName">
            <summary>
            author_name the name of the user who submitted the review. Anonymous reviews are attributed to "A Google user".
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.Review.AuthorUrl">
            <summary>
            author_url the URL to the users Google+ profile, if available.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.Review.Language">
            <summary>
            Language an IETF language code indicating the language used in the user's review. This field contains the main language tag only, 
            and not the secondary tag indicating country or region. For example, all the English reviews are tagged as 'en', and not 'en-AU' or 'en-UK' and so on.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.Review.Rating">
            <summary>
            Rating the user's overall rating for this place. This is a whole number, ranging from 1 to 5.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.Review.Text">
            <summary>
            Text contains the user's review. When reviewing a location with Google Places, 
            text reviews are considered optional; therefore, this field may by empty.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.Review.ProfilePhotoUrl">
            <summary>
            The url to the photo.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.Review.RelativeTime">
            <summary>
            The relative time, in human language description.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Details.Response.Review.DateTime">
            <summary>
            Time the time that the review was submitted, measured in the number of seconds since since midnight, January 1, 1970 UTC.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Photos.Request.PlacesPhotosRequest">
            <summary>
            Places Photos Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Photos.Request.PlacesPhotosRequest.BaseUrl">
            <summary>
            Base Url.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Photos.Request.PlacesPhotosRequest.MaxWidth">
            <summary>
            maxwidth — Specifies the maximum desired width, in pixels, of the image returned by the Place Photos service.
             If the image is smaller than the values specified, the original image will be returned. If the image is larger in either dimension, 
            it will be scaled to match the smaller of the two dimensions, restricted to its original aspect ratio. 
            Both the maxwidth properties accept an integer between 1 and 1600.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Photos.Request.PlacesPhotosRequest.MaxHeight">
            <summary>
            maxheight — Specifies the maximum desired height, in pixels, of the image returned by the Place Photos service. 
            If the image is smaller than the values specified, the original image will be returned. If the image is larger in either dimension, 
            it will be scaled to match the smaller of the two dimensions, restricted to its original aspect ratio. 
            Both the maxheight properties accept an integer between 1 and 1600.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Photos.Request.PlacesPhotosRequest.PhotoReference">
            <summary>
            photoreference (required) — A string identifier that uniquely identifies a photo. 
            Photo references are returned from either a Place Search or Place Details request.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Places.Photos.Request.PlacesPhotosRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Places.Photos.Response.PlacesPhotosResponse">
            <summary>
            Places Photos Response.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.QueryAutoComplete.Request.PlacesQueryAutoCompleteRequest">
            <summary>
            Places QueryAutoComplete Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.QueryAutoComplete.Request.PlacesQueryAutoCompleteRequest.BaseUrl">
            <summary>
            Base Url.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.QueryAutoComplete.Request.PlacesQueryAutoCompleteRequest.Input">
            <summary>
            The text string on which to search. 
            The Place service will return candidate matches based on this string and order results based on their perceived relevance.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.QueryAutoComplete.Request.PlacesQueryAutoCompleteRequest.Offset">
            <summary>
            The character position in the input term at which the service uses text for predictions. For example, 
            if the input is 'Googl' and the completion point is 3, the service will match on 'Goo'. The offset should generally be set to the position of the text caret. 
            If no offset is supplied, the service will use the entire term.        
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.QueryAutoComplete.Request.PlacesQueryAutoCompleteRequest.Location">
            <summary>
            The point around which you wish to retrieve Place information. Must be specified as latitude,longitude.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.QueryAutoComplete.Request.PlacesQueryAutoCompleteRequest.Radius">
            <summary>
            The distance (in meters) within which to return Place results. Note that setting a radius biases results to the indicated area, 
            but may not fully restrict results to the specified area. See Location Biasing below.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.QueryAutoComplete.Request.PlacesQueryAutoCompleteRequest.Language">
            <summary>
            The language in which to return results. See the supported list of domain languages. 
            Note that we often update supported languages so this list may not be exhaustive. If language is not supplied, the Place service will attempt to use the native language of the domain from which the request is sent.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Places.QueryAutoComplete.Request.PlacesQueryAutoCompleteRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Places.QueryAutoComplete.Response.PlacesQueryAutoCompleteResponse">
            <summary>
            Places QueryAutoComplete Response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.QueryAutoComplete.Response.PlacesQueryAutoCompleteResponse.Predictions">
            <summary>
            Contains an array of predictions, with information about the prediction.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Search.Common.BaseResult">
            <summary>
            BasePlace Result.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Common.BaseResult.IconUrl">
            <summary>
            Icon contains the URL of a recommended icon which may be displayed to the user when indicating this result.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Common.BaseResult.Geometry">
            <summary>
            Geometry contains geometry information about the result, generally including the location (geocode) of the place and (optionally) 
            the viewport identifying its general area of coverage.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Common.BaseResult.Name">
            <summary>
            Name contains the human-readable name for the returned result. 
            For establishment results, this is usually the business name.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Common.BaseResult.OpeningHours">
            <summary>
            OpeningHours may contain the following information:
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Common.BaseResult.Photos">
            <summary>
            Photos — an array of photo objects, each containing a reference to an image. 
            A Place Search will return at most one photo object. Performing a Place Details request on the place may return up to ten photos. 
            More information about Place Photos and how you can use the images in your application can be found in the Place Photos documentation. 
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Common.BaseResult.PlaceId">
            <summary>
            PlaceId — a textual identifier that uniquely identifies a place. 
            To retrieve information about the place, pass this identifier in the placeId field of a Places API request. For more information about place IDs, see the place ID overview.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Common.BaseResult.Scope">
            <summary>
            Scope — Indicates the scope of the placeId.
            Note: The scope field is included only in Nearby Search results and Place Details results. 
            You can only retrieve app-scoped places via the Nearby Search and the Place Details requests. 
            If the scope field is not present in a response, it is safe to assume the scope is GOOGLE
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Common.BaseResult.AlternativePlaceIds">
            <summary>
            AlternativePlaceIds — An array of zero, one or more alternative place IDs for the place, with a scope related to each alternative ID. 
            Note: This array may be empty or not present. 
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Common.BaseResult.PriceLevel">
            <summary>
            price_level — The price level of the place, on a scale of 0 to 4. 
            The exact amount indicated by a specific value will vary from region to region. 
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Common.BaseResult.BusinessStatus">
            <summary>
            Business Status.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Common.BaseResult.Rating">
            <summary>
            Rating contains the place's rating, from 1.0 to 5.0, based on aggregated user reviews.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Common.BaseResult.UserRatingsTotal">
            <summary>
            The total number of user ratings.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Common.BaseResult.Types">
            <summary>
            Types contains an array of feature types describing the given result. See the list of supported types for more information. 
            XML responses include multiple type elements if more than one type is assigned to the result.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType">
            <summary>
            Place Types
            https://developers.google.com/places/supported_types#table1
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Accounting">
            <summary>
            Accounting.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Airport">
            <summary>
            Airport.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.AmusementPark">
            <summary>
            Amusement Park.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Aquarium">
            <summary>
            Aquarium.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.ArtGallery">
            <summary>
            Art Gallery.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Atm">
            <summary>
            Atm.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Bakery">
            <summary>
            Bakery.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Bank">
            <summary>
            Bank.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Bar">
            <summary>
            Bar.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.BeautySalon">
            <summary>
            Beauty Salon.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.BicycleStore">
            <summary>
            Bicycle Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.BookStore">
            <summary>
            Book Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.BowlingAlley">
            <summary>
            Bowling Alley.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.BusStation">
            <summary>
            Bus Station.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Cafe">
            <summary>
            Cafe.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Campground">
            <summary>
            Campground.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.CarDealer">
            <summary>
            Car Dealer.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.CarRental">
            <summary>
            Car Rental.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.CarRepair">
            <summary>
            Car Repair.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.CarWash">
            <summary>
            Car Wash.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Casino">
            <summary>
            Casino.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Cemetery">
            <summary>
            Cemetery.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Church">
            <summary>
            Church.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.CityHall">
            <summary>
            City Hall.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.ClothingStore">
            <summary>
            Clothing Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.ConvenienceStore">
            <summary>
            Convenience Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Courthouse">
            <summary>
            Courthouse.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Dentist">
            <summary>
            Dentist.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.DepartmentStore">
            <summary>
            Department Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Doctor">
            <summary>
            Doctor.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Embassy">
            <summary>
            Embassy.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Electrician">
            <summary>
            Electrician
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.ElectronicsStore">
            <summary>
            Electronics Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.FireStation">
            <summary>
            Fire Station.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Florist">
            <summary>
            Florist.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.FuneralHome">
            <summary>
            Funeral Home.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.FurnitureStore">
            <summary>
            Furniture Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.GasStation">
            <summary>
            Gas Station.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Gym">
            <summary>
            Gym.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.HairCare">
            <summary>
            Hair Care.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.HardwareStore">
            <summary>
            Hardware Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.HinduTemple">
            <summary>
            Hindu Temple.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.HomeGoodsStore">
            <summary>
            Home Goods Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Hospital">
            <summary>
            Hospital.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.InsuranceAgency">
            <summary>
            Insurance Agency.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.JewelryStore">
            <summary>
            Jewelry Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Laundry">
            <summary>
            Laundry.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Lawyer">
            <summary>
            Lawyer.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Library">
            <summary>
            Library.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.LiquorStore">
            <summary>
            Liquor Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.LocalGovernmentOffice">
            <summary>
            Local Government Office.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Locksmith">
            <summary>
            Locksmith
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Lodging">
            <summary>
            Lodging.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.MealDelivery">
            <summary>
            Meal Delivery.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.MealTakeaway">
            <summary>
            Meal Takeaway.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Mosque">
            <summary>
            Mosque.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.MovieRental">
            <summary>
            Movie Rental.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.MovieTheater">
            <summary>
            Movie Theater.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.MovingCompany">
            <summary>
            Moving Company.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Museum">
            <summary>
            Museum.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.NightClub">
            <summary>
            Night Club.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Painter">
            <summary>
            Painter.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Park">
            <summary>
            Park.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Parking">
            <summary>
            Parking.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.PetStore">
            <summary>
            Pet Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Pharmacy">
            <summary>
            Pharmacy.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Physiotherapist">
            <summary>
            Physiotherapist.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Plumber">
            <summary>
            Plumber.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Police">
            <summary>
            Police.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.PostOffice">
            <summary>
            Post Office.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.PrimarySchool">
            <summary>
            Primary School.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.RealEstateAgency">
            <summary>
            Real Estate Agency.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Restaurant">
            <summary>
            Restaurant.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.RoofingContractor">
            <summary>
            Roofing Contractor.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.RvPark">
            <summary>
            Rv Park.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.School">
            <summary>
            School.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.SecondarySchool">
            <summary>
            Secondary School.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.ShoeStore">
            <summary>
            Shoe Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.ShoppingMall">
            <summary>
            Shopping Mall.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Spa">
            <summary>
            Spa.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Stadium">
            <summary>
            Stadium.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Storage">
            <summary>
            Storage.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Store">
            <summary>
            Store.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.SubwayStation">
            <summary>
            Subway Station.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.SuperMarket">
            <summary>
            Synagogue.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Synagogue">
            <summary>
            Synagogue.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.TaxiStand">
            <summary>
            Taxi Stand.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.TouristAttraction">
            <summary>
            Train Station.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.TrainStation">
            <summary>
            Train Station.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.TransitStation">
            <summary>
            Train Station.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.TravelAgency">
            <summary>
            Travel Agency.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.University">
            <summary>
            University.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.VeterinaryCare">
            <summary>
            Veterinary Care.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Common.Enums.SearchPlaceType.Zoo">
            <summary>
            Zoo.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Search.Common.OpeningHours">
            <summary>
            Opening Hours.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Common.OpeningHours.OpenNow">
            <summary>
            OpenNow is a boolean value indicating if the place is open at the current time.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Search.Find.Request.Enums.FieldTypes">
            <summary>
            Field Types.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Find.Request.Enums.FieldTypes.Formatted_Address">
            <summary>
            Formatted Address (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Find.Request.Enums.FieldTypes.Geometry">
            <summary>
            Geometry (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Find.Request.Enums.FieldTypes.Icon">
            <summary>
            Icon (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Find.Request.Enums.FieldTypes.Name">
            <summary>
            Name (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Find.Request.Enums.FieldTypes.Photos">
            <summary>
            Photos (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Find.Request.Enums.FieldTypes.Place_Id">
            <summary>
            Place_Id (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Find.Request.Enums.FieldTypes.Plus_Code">
            <summary>
            Plus_Code (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Find.Request.Enums.FieldTypes.Types">
            <summary>
            Types (billing: basic).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Find.Request.Enums.FieldTypes.Opening_Hours">
            <summary>
            Opening Hours (billing: contact).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Find.Request.Enums.FieldTypes.Price_Level">
            <summary>
            Price Level (billing: atmosphere)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Find.Request.Enums.FieldTypes.Rating">
            <summary>
            Rating (billing: atmosphere).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Find.Request.Enums.FieldTypes.User_Ratings_Total">
            <summary>
            User Ratings Total (billing: atmosphere).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Find.Request.Enums.FieldTypes.Business_Status">
            <summary>
            Business Status.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Find.Request.Enums.FieldTypes.Basic">
            <summary>
            Basic (all).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Find.Request.Enums.FieldTypes.Contact">
            <summary>
            Contact (all).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Find.Request.Enums.FieldTypes.Atmosphere">
            <summary>
            Atmosphere (all).
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Search.Find.Request.Enums.InputType">
            <summary>
            Input Type.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Find.Request.Enums.InputType.TextQuery">
            <summary>
            Text Query.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.Find.Request.Enums.InputType.PhoneNumber">
            <summary>
            Phone Number.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Search.Find.Request.PlacesFindSearchRequest">
            <summary>
            Places Find Search Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Request.PlacesFindSearchRequest.BaseUrl">
            <summary>
            Base Url.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Request.PlacesFindSearchRequest.Input">
            <summary>
            Input.
            The text input specifying which place to search for (for example, a name, address, or phone number)
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Request.PlacesFindSearchRequest.Type">
            <summary>
            Type.
            The type of input.This can be one of either textquery or phonenumber.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Request.PlacesFindSearchRequest.Language">
            <summary>
            Language (optional).
            The language code, indicating in which language the results should be returned, if possible.
            Searches are also biased to the selected language; results in the selected language may be given a higher ranking.
            See the list of supported languages and their codes: https://developers.google.com/maps/faq#languagesupport
            Note that we often update supported languages so this list may not be exhaustive.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Request.PlacesFindSearchRequest.Fields">
            <summary>
            Fields (optional).
            Defaults to 'place_id'.
            The fields specifying the types of place data to return, separated by a comma.
            Note, if you omit the fields parameter from a Find Place request, only the place_id for the result will be returned.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Request.PlacesFindSearchRequest.Radius">
            <summary>
            Radius (optional).
            Defines the radius of cirkular location bias.
            Ignored if <see cref="P:GoogleApi.Entities.Places.Search.Find.Request.PlacesFindSearchRequest.Location"/> is null.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Request.PlacesFindSearchRequest.Bounds">
            <summary>
            Bounds (optional).
            Sets the bias to the defined bounds. 'rectangle:south, west|north, east.'
            Note that east/west values are wrapped to the range -180, 180, and north/south values are clamped to the range -90, 90.
            Ignored if <see cref="P:GoogleApi.Entities.Places.Search.Find.Request.PlacesFindSearchRequest.Location"/> is not null.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Request.PlacesFindSearchRequest.Location">
            <summary>
            Location (optional).
            The results are biased based on th location (point). If <see cref="P:GoogleApi.Entities.Places.Search.Find.Request.PlacesFindSearchRequest.Radius"/> is specified as well, the bias is a circle having the center on the location
            and the radius in size.
            - A single lat/lng coordinate.Use the following format: 'point:lat, lng'
            - Circular: A string specifying radius in meters, plus lat/lng in decimal degrees. Format: 'circle:radius @lat, lng.'
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Places.Search.Find.Request.PlacesFindSearchRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Places.Search.Find.Response.Candidate">
            <summary>
            Candidate.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Response.Candidate.Name">
            <summary>
            Name contains the human-readable name for the returned result.
            For establishment results, this is usually the canonicalized business name.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Response.Candidate.Icon">
            <summary>
            icon contains the URL of a suggested icon which may be displayed to the user when indicating this result on a map
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Response.Candidate.PlaceId">
            <summary>
            A textual identifier that uniquely identifies a place.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Response.Candidate.FormattedAddress">
            <summary>
            FormatedAddress is a string containing the human-readable address of this place. 
            Often this address is equivalent to the "postal address". 
            The formatted_address property is only returned for a Text Search.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Response.Candidate.Geometry">
            <summary>
            Geometry contains a location.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Response.Candidate.OpeningHours">
            <summary>
            opening_hours may contain information about the place opening hours.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Response.Candidate.PlusCode">
            <summary>
            plus_code is an encoded location reference, derived from latitude and longitude coordinates,
            that represents an area: 1/8000th of a degree by 1/8000th of a degree(about 14m x 14m at the equator) or smaller.
            Plus codes can be used as a replacement for street addresses in places where they do not exist (where buildings are not numbered or streets are not named).
            The plus code is formatted as a global code and a compound code:
            - global_code is a 4 character area code and 6 character or longer local code(849VCWC8+R9).
            - compound_code is a 6 character or longer local code with an explicit location (CWC8+R9, Mountain View, CA, USA).
            Typically, both the global code and compound code are returned.However, if the result is in a remote location(for example, an ocean or desert)
            only the global code may be returned.
            See further details about pkus codes here: https://en.wikipedia.org/wiki/Open_Location_Code and https://plus.codes.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Response.Candidate.Scope">
            <summary>
            Scope — Indicates the scope of the placeId.
            Note: The scope field is included only in Nearby Search results and Place Details results. 
            You can only retrieve app-scoped places via the Nearby Search and the Place Details requests. 
            If the scope field is not present in a response, it is safe to assume the scope is GOOGLE
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Response.Candidate.BusinessStatus">
            <summary>
            Business Status.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Response.Candidate.Rating">
            <summary>
            Rating the user's overall rating for this place. This is a whole number, ranging from 1 to 5.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Response.Candidate.UserRatingsTotal">
            <summary>
            The total number of user ratings.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Response.Candidate.Photos">
            <summary>
            Photos.
            An array of photo objects, each containing a reference to an image. A Place Details request may return up to ten photos.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Response.Candidate.Types">
            <summary>
            An array of types for this place
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Search.Find.Response.PlacesFindSearchResponse">
            <summary>
            Places Find Search Response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Find.Response.PlacesFindSearchResponse.Candidates">
            <summary>
            Candidates.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Search.NearBy.Request.Enums.Ranking">
            <summary>
            Specifies the order in which results are listed for place searches.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.NearBy.Request.Enums.Ranking.Prominence">
            <summary>
            This option sorts results based on their importance. 
            Ranking will favor prominent places within the specified area. Prominence can be affected by a place's ranking in Google's index, global popularity, and other factors.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Places.Search.NearBy.Request.Enums.Ranking.Distance">
            <summary>
            This option biases search results in ascending order by their distance from the specified location. When distance is specified, one or more of keyword, name, or types is required
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Search.NearBy.Request.PlacesNearBySearchRequest">
            <summary>
            Places NearBySearch Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.NearBy.Request.PlacesNearBySearchRequest.BaseUrl">
            <summary>
            Base Url.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.NearBy.Request.PlacesNearBySearchRequest.Name">
            <summary>
            name — One or more terms to be matched against the names of places, separated with a space character. 
            Results will be restricted to those containing the passed name values. Note that a place may have additional names associated with it, beyond its listed name. 
            The API will try to match the passed name value against all of these names. As a result, places may be returned in the results whose listed names do not match the search term, 
            but whose associated names do.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.NearBy.Request.PlacesNearBySearchRequest.Keyword">
            <summary>
            keyword — A term to be matched against all content that Google has indexed for this place, including but not limited to name, type, and address, 
            as well as customer reviews and other third-party content.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.NearBy.Request.PlacesNearBySearchRequest.Rankby">
            <summary>
            rankby — Specifies the order in which results are listed. Possible values are:
            - prominence (default). 
            This option sorts results based on their importance. Ranking will favor prominent places within the specified area. 
            - Prominence, can be affected by a place's ranking in Google's index, global popularity, and other factors.
            - Distance. This option biases search results in ascending order by their distance from the specified location. When distance is specified, one or more of keyword, name, or types is required.
            If rankby=distance is specified, then one or more of keyword, name, or types is required.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.NearBy.Request.PlacesNearBySearchRequest.OpenNow">
            <summary>
            opennow (optional). 
            Returns only those places that are open for business at the time the query is sent. 
            Places that do not specify opening hours in the Google Places database will not be returned if you 
            include this parameter in your query.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.NearBy.Request.PlacesNearBySearchRequest.Language">
            <summary>
            (optional) The language in which to return results. See the supported list of domain languages. 
            Note that we often update supported languages so this list may not be exhaustive. If language is not supplied, 
            the Place service will attempt to use the native language of the domain from which the request is sent.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.NearBy.Request.PlacesNearBySearchRequest.Minprice">
            <summary>
            Minprice (optional).
            Restricts results to only those places within the specified range. 
            Valid values range between 0 (most affordable) to 4 (most expensive), inclusive. 
            The exact amount indicated by a specific value will vary from region to region.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.NearBy.Request.PlacesNearBySearchRequest.Maxprice">
            <summary>
            Maxprice (optional).
            Restricts results to only those places within the specified range. 
            Valid values range between 0 (most affordable) to 4 (most expensive), inclusive. 
            The exact amount indicated by a specific value will vary from region to region.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.NearBy.Request.PlacesNearBySearchRequest.Type">
            <summary>
            Type (optional). 
            Restricts the results to places matching the specified type. 
            Only one type may be specified (if more than one type is provided, all types following the first entry are ignored). 
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.NearBy.Request.PlacesNearBySearchRequest.Location">
            <summary>
            Location (optional).
            The latitude/longitude around which to retrieve place information. 
            If you specify a location parameter, you must also specify a radius parameter.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.NearBy.Request.PlacesNearBySearchRequest.Radius">
            <summary>
            Radius (Radius).
            Defines the distance (in meters) within which to bias place results. The maximum allowed radius is 50 000 meters. 
            Results inside of this region will be ranked higher than results outside of the search circle; 
            however, prominent results from outside of the search radius may be included
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.NearBy.Request.PlacesNearBySearchRequest.PageToken">
            <summary>
            pagetoken — Returns the next 20 results from a previously run search. 
            Setting a pagetoken parameter will execute a search with the same parameters 
            used previously — all parameters other than pagetoken will be ignored.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Places.Search.NearBy.Request.PlacesNearBySearchRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Places.Search.NearBy.Response.NearByResult">
            <summary>
            NearBy Result.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.NearBy.Response.NearByResult.Vicinity">
            <summary>
            Vicinity contains a feature name of a nearby location. 
            Often this feature refers to a street or neighborhood within the given results. 
            The vicinity property is only returned for a Nearby Search.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Search.NearBy.Response.PlacesNearbySearchResponse">
            <summary>
            Places NearbySearch Response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.NearBy.Response.PlacesNearbySearchResponse.Results">
            <summary>
            Contains an array of places, with information about each. See Search Results for information about these results. 
            The Places API returns up to 20 establishment results per query. Additionally, political results may be returned 
            which serve to identify the area of the request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.NearBy.Response.PlacesNearbySearchResponse.NextPageToken">
            <summary>
            Contains a token that can be used to return up to 20 additional results. A next_page_token will not be returned if there are no additional results to display. 
            The maximum number of results that can be returned is 60. There is a short delay between when a next_page_token is issued, and when it will become valid.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Search.Text.Request.PlacesTextSearchRequest">
            <summary>
            Places TextSearch Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Text.Request.PlacesTextSearchRequest.BaseUrl">
            <summary>
            Base Url.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Text.Request.PlacesTextSearchRequest.Query">
            <summary>
            Query — The text string on which to search, for example: "restaurant". 
            The Google Places service will return candidate matches based on this string and order the results based on their perceived relevance.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Text.Request.PlacesTextSearchRequest.Region">
            <summary>
            The region code, specified as a ccTLD ("top-level domain") two-character value.
            Most ccTLD codes are identical to ISO 3166-1 codes, with some notable exceptions.
            For example, the United Kingdom's ccTLD is "uk" (.co.uk) while its ISO 3166-1 code is "gb" (technically for the entity of "The United Kingdom of Great Britain and Northern Ireland").
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Text.Request.PlacesTextSearchRequest.OpenNow">
            <summary>
            opennow (optional). 
            Returns only those places that are open for business at the time the query is sent. 
            Places that do not specify opening hours in the Google Places database will not be returned if you 
            include this parameter in your query.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Text.Request.PlacesTextSearchRequest.Language">
            <summary>
            (optional) The language in which to return results. See the supported list of domain languages. 
            Note that we often update supported languages so this list may not be exhaustive. If language is not supplied, 
            the Place service will attempt to use the native language of the domain from which the request is sent.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Text.Request.PlacesTextSearchRequest.Minprice">
            <summary>
            Minprice (optional).
            Restricts results to only those places within the specified range. 
            Valid values range between 0 (most affordable) to 4 (most expensive), inclusive. 
            The exact amount indicated by a specific value will vary from region to region.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Text.Request.PlacesTextSearchRequest.Maxprice">
            <summary>
            Maxprice (optional).
            Restricts results to only those places within the specified range. 
            Valid values range between 0 (most affordable) to 4 (most expensive), inclusive. 
            The exact amount indicated by a specific value will vary from region to region.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Text.Request.PlacesTextSearchRequest.Type">
            <summary>
            Type (optional). 
            Restricts the results to places matching the specified type. 
            Only one type may be specified (if more than one type is provided, all types following the first entry are ignored). 
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Text.Request.PlacesTextSearchRequest.Location">
            <summary>
            Location (optional).
            The latitude/longitude around which to retrieve place information. 
            If you specify a location parameter, you must also specify a radius parameter.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Text.Request.PlacesTextSearchRequest.Radius">
            <summary>
            Radius (Radius).
            Defines the distance (in meters) within which to bias place results. The maximum allowed radius is 50 000 meters. 
            Results inside of this region will be ranked higher than results outside of the search circle; 
            however, prominent results from outside of the search radius may be included
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Text.Request.PlacesTextSearchRequest.PageToken">
            <summary>
            pagetoken — Returns the next 20 results from a previously run search. 
            Setting a pagetoken parameter will execute a search with the same parameters 
            used previously — all parameters other than pagetoken will be ignored.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Places.Search.Text.Request.PlacesTextSearchRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Places.Search.Text.Response.PlacesTextSearchResponse">
            <summary>
            Places TextSearch Response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Text.Response.PlacesTextSearchResponse.Results">
            <summary>
            Results.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Text.Response.PlacesTextSearchResponse.NextPageToken">
            <summary>
            Contains a token that can be used to return up to 20 additional results. A next_page_token will not be returned if there are no additional results to display. 
            The maximum number of results that can be returned is 60. There is a short delay between when a next_page_token is issued, and when it will become valid.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Places.Search.Text.Response.TextResult">
            <summary>
            Text Result.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Places.Search.Text.Response.TextResult.FormattedAddress">
            <summary>
            FormattedAddress is a string containing the human-readable address of this place. 
            Often this address is equivalent to the "postal address". 
            The formatted_address property is only returned for a Text Search.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.BaseSearchRequest">
            <summary>
            Base abstract class for Search requests.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchRequest.BaseUrl">
            <summary>
            BaseUrl property overriden.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchRequest.Alt">
            <summary>
            Alt - Data format for the response. (only json supported)
            Valid values: json, atom
            Default value: json
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchRequest.SearchType">
            <summary>
            Allowed values are web or image. If unspecified, results are limited to webpages.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchRequest.Query">
            <summary>
            Required. 
            Use the q query parameter to specify your search expression.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchRequest.Callback">
            <summary>
            Callback function.
            Name of the JavaScript callback function that handles the response.
            Used in JavaScript JSON-P requests
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchRequest.Fields">
            <summary>
            fields - Selector specifying a subset of fields to include in the response.	
            For more information, see the partial response section in the Performance Tips document.
            Use for better performance. https://developers.google.com/custom-search/json-api/v1/performance#partial
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchRequest.PrettyPrint">
            <summary>
            PrettyPrint - Returns response with indentations and line breaks.
            Returns the response in a human-readable format if true.
            Default value: true.
            When this is false, it can reduce the response payload size, which might lead to better performance in some environments.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchRequest.UserIp">
            <summary>
            userIp IP address of the end user for whom the API call is being made.	
            Lets you enforce per-user quotas when calling the API from a server-side application.
            Learn more about Capping API usage. https://support.google.com/cloud/answer/7035610
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchRequest.QuotaUser">
            <summary>
            quotaUser Alternative to userIp.	
            Lets you enforce per-user quotas from a server-side application even in cases when the user's IP address is unknown. This can occur, for example, with applications that run cron jobs on App Engine on a user's behalf.
            You can choose any arbitrary string that uniquely identifies a user, but it is limited to 40 characters.
            Overrides userIp if both are provided.
            Learn more about Capping API usage. https://support.google.com/cloud/answer/7035610
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.BaseSearchRequest.GetQueryStringParameters">
            <summary>
            See <see cref="M:GoogleApi.Entities.BaseRequest.GetQueryStringParameters"/>.
            </summary>
            <returns>The <see cref="T:System.Collections.Generic.IList`1"/> collection.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Search.BaseSearchResponse">
            <summary>
            Base abstract class for Search responses.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchResponse.Kind">
            <summary>
            Unique identifier for the type of current object. For this API, it is customsearch#search.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchResponse.Url">
            <summary>
            The OpenSearch URL element that defines the template for this API.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchResponse.Context">
            <summary>
            Metadata about the particular search engine that was used for performing the search query.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchResponse.Spelling">
            <summary>
            Encapsulates a corrected query.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchResponse.Search">
            <summary>
            Encapsulates all information about the search.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchResponse.Items">
            <summary>
            The current set of search results.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchResponse.Promotions">
            <summary>
            The set of promotions. Present only if the custom search engine's configuration files define any promotions for the given query.
            https://developers.google.com/custom-search/docs/promotions.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchResponse.Query">
            <summary>
            Contains <see cref="T:GoogleApi.Entities.Search.Common.QueryInfo"/> about the executed request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchResponse.NextPage">
            <summary>
            Contains <see cref="T:GoogleApi.Entities.Search.Common.QueryInfo"/> about the next page of the executed request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchResponse.PreviousPage">
            <summary>
            Contains <see cref="T:GoogleApi.Entities.Search.Common.QueryInfo"/> about the previous page of the executed request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.BaseSearchResponse.Queries">
            <summary>
            Contains one or more sets of query metadata, keyed by role name. 
            The possible role names are defined by the OpenSearch query roles and by two custom roles: nextPage and previousPage.
            http://www.opensearch.org/Specifications/OpenSearch/1.1#OpenSearch_Query_element
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.BodyLine">
            <summary>
            Body line.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.BodyLine.Title">
            <summary>
            The block object's text, if it has text.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.BodyLine.HtmlTitle">
            <summary>
            The block object's html text, if it has text.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.BodyLine.Link">
            <summary>
            The anchor text of the block object's link, if it has a link.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.BodyLine.Url">
            <summary>
            The URL of the block object's link, if it has one
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Context">
            <summary>
            Metadata about the particular search engine that was used for performing the search query.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Context.Title">
            <summary>
            The name of the search engine that was used for the query.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Context.Facets">
            <summary>
            A set of facet objects (refinements) you can use for refining a search.
            https://developers.google.com/custom-search/docs/refinements#create
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Converters.DateRestrictJsonConverter">
            <summary>
            Date Restrict Json Converter.
            Converter for <see cref="T:GoogleApi.Entities.Search.Common.DateRestrict"/>.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.Converters.DateRestrictJsonConverter.CanConvert(System.Type)">
            <inheritdoc />
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.Converters.DateRestrictJsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
            <inheritdoc />
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.Converters.DateRestrictJsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Converters.SortExpressionJsonConverter">
            <summary>
            Sort Expression Json Converter.
            Converter for <see cref="T:GoogleApi.Entities.Search.Common.SortExpression"/>.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.Converters.SortExpressionJsonConverter.CanConvert(System.Type)">
            <inheritdoc />
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.Converters.SortExpressionJsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
            <inheritdoc />
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.Converters.SortExpressionJsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.CountryRestrict">
            <summary>
            Restricts search results to documents originating in a particular country. 
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.CountryRestrict.Expressions">
            <summary>
            The expresssions of the country restriction.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.CountryRestrict.ToString">
            <summary>
            Converts the <see cref="T:GoogleApi.Entities.Search.Common.CountryRestrictExpression"/> to a <see cref="T:System.String"/>,
            compatible with the format used by Google search country restriction request.
            </summary>
            <returns>A <see cref="T:System.String"/>.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.CountryRestrictExpression">
            <summary>
            An expression that is part of a <see cref="T:GoogleApi.Entities.Search.Common.CountryRestrict"/> 
            or nested expression associated with another <see cref="T:GoogleApi.Entities.Search.Common.CountryRestrictExpression"/> object.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.CountryRestrictExpression.Not">
            <summary>
            The NOT operator (.) removes all results that are in the collection immediately following the minus("-") operator.
            This example removes all results that are originating from France:
            Example: cr= -countryFR
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.CountryRestrictExpression.Country">
            <summary>
            The <see cref="P:GoogleApi.Entities.Search.Common.CountryRestrictExpression.Country"/> to restrict in the search.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.CountryRestrictExpression.Operator">
            <summary>
            The <see cref="P:GoogleApi.Entities.Search.Common.CountryRestrictExpression.Operator"/> to apply after this expression and before the next.
            If this expression is the last of nested expressions, the operator will be placed outside the ending perenthese.
            if this is the last expression the <see cref="T:GoogleApi.Entities.Search.Common.Enums.Operator"/> will be ignored.
            Default is <see cref="F:GoogleApi.Entities.Search.Common.Enums.Operator.And"/>.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.CountryRestrictExpression.NestedCountryRestrict">
            <summary>
            Nested <see cref="T:GoogleApi.Entities.Search.Common.CountryRestrict"/>,
            that expressions will be appended inside parantheses after this <see cref="T:GoogleApi.Entities.Search.Common.CountryRestrictExpression"/>.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.CountryRestrictExpression.ToString">
            <summary>
            Converts the <see cref="T:GoogleApi.Entities.Search.Common.CountryRestrictExpression"/> to a <see cref="T:System.String"/>,
            compatible with the format used by Google search country restriction request.
            </summary>
            <returns>A <see cref="T:System.String"/>.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.DateRestrict">
            <summary>
            Date Restrict.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.DateRestrict.Type">
            <summary>
            Type - Restricts results to URLs based on date.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.DateRestrict.Number">
            <summary>
            Number - Requests results from the specified number of past days, weeks, months or years.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.DateRestrict.ToString">
            <summary>
            Returns the <see cref="T:GoogleApi.Entities.Search.Common.DateRestrict"/> to <see cref="T:System.String"/>.
            </summary>
            <returns>The <see cref="T:GoogleApi.Entities.Search.Common.DateRestrict"/> object as <see cref="T:System.String"/>.</returns>
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.DateRestrict.FromString(System.String)">
            <summary>
            Converts a <see cref="T:System.String"/> into a <see cref="T:GoogleApi.Entities.Search.Common.DateRestrict"/>.
            </summary>
            <param name="string">The <see cref="T:System.String"/> formatted as a valid <see cref="T:GoogleApi.Entities.Search.Common.DateRestrict"/>.</param>
            <returns>The converted <see cref="T:GoogleApi.Entities.Search.Common.DateRestrict"/></returns>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.AltType">
            <summary>
            Data format for the response.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.AltType.Json">
            <summary>
            Json format.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.AltType.Atom">
            <summary>
            Atom format.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.ColorType">
            <summary>
            Color Type
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.ColorType.Color">
            <summary>
            Color.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.ColorType.Grey">
            <summary>
            Grayscale.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.ColorType.Mono">
            <summary>
            Black and white.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.Country">
            <summary>
            Country.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Afghanistan">
            <summary>
            Afghanistan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Albania">
            <summary>
            Albania
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Algeria">
            <summary>
            Algeria
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.AmericanSamoa">
            <summary>
            American Samoa
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Andorra">
            <summary>
            Andorra
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Angola">
            <summary>
            Angola
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Anguilla">
            <summary>
            Anguilla
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Antarctica">
            <summary>
            Antarctica
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.AntiguaAndBarbuda">
            <summary>
            Antigua and Barbuda
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Argentina">
            <summary>
            Argentina
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Armenia">
            <summary>
            Armenia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Aruba">
            <summary>
            Aruba
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Australia">
            <summary>
            Australia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Austria">
            <summary>
            Austria
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Azerbaijan">
            <summary>
            Azerbaijan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Bahamas">
            <summary>
            Bahamas
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Bahrain">
            <summary>
            Bahrain
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Bangladesh">
            <summary>
            Bangladesh
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Barbados">
            <summary>
            Barbados
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Belarus">
            <summary>
            Belarus
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Belgium">
            <summary>
            Belgium
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Belize">
            <summary>
            Belize
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Benin">
            <summary>
            Benin
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Bermuda">
            <summary>
            Bermuda
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Bhutan">
            <summary>
            Bhutan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Bolivia">
            <summary>
            Bolivia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.BosniaAndHerzegovina">
            <summary>
            Bosnia and Herzegovina
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Botswana">
            <summary>
            Botswana
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.BouvetIsland">
            <summary>
            Bouvet Island
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Brazil">
            <summary>
            Brazil
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.BritishIndianOceanTerritory">
            <summary>
            British Indian Ocean Territory
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.BruneiDarussalam">
            <summary>
            Brunei Darussalam
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Bulgaria">
            <summary>
            Bulgaria
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.BurkinaFaso">
            <summary>
            Burkina Faso
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Burundi">
            <summary>
            Burundi
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Cambodia">
            <summary>
            Cambodia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Cameroon">
            <summary>
            Cameroon
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Canada">
            <summary>
            Canada
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.CapeVerde">
            <summary>
            Cape Verde
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.CaymanIslands">
            <summary>
            Cayman Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.CentralAfricanRepublic">
            <summary>
            Central African Republic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Chad">
            <summary>
            Chad
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Chile">
            <summary>
            Chile
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.China">
            <summary>
            China
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.ChristmasIsland">
            <summary>
            Christmas Island
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.CocosIslands">
            <summary>
            Cocos (Keeling) Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Colombia">
            <summary>
            Colombia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Comoros">
            <summary>
            Comoros
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Congo">
            <summary>
            Congo
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.TheDemocraticRepublicOfCongo">
            <summary>
            Congo, the Democratic Republic of the
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.CookIslands">
            <summary>
            Cook Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.CostaRica">
            <summary>
            Costa Rica
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.CoteDivoire">
            <summary>
            Cote D'ivoire
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Croatia">
            <summary>
            Croatia (Hrvatska)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Cuba">
            <summary>
            Cuba
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Cyprus">
            <summary>
            Cyprus
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.CzechRepublic">
            <summary>
            Czech Republic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Denmark">
            <summary>
            Denmark
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Djibouti">
            <summary>
            Djibouti
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Dominica">
            <summary>
            Dominica
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.DominicanRepublic">
            <summary>
            Dominican Republic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.EastTimor">
            <summary>
            East Timor
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Ecuador">
            <summary>
            Ecuador
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Egypt">
            <summary>
            Egypt
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.ElSalvador">
            <summary>
            El Salvador
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.EquatorialGuinea">
            <summary>
            Equatorial Guinea
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Eritrea">
            <summary>
            Eritrea
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Estonia">
            <summary>
            Estonia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Ethiopia">
            <summary>
            Ethiopia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.EuropeanUnion">
            <summary>
            European Union
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.FalklandIslAndsMalvinas">
            <summary>
            Falkland Islands (Malvinas)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.FaroeIslands">
            <summary>
            Faroe Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Fiji">
            <summary>
            Fiji
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Finland">
            <summary>
            Finland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.France">
            <summary>
            France
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.FranceMetropolitan">
            <summary>
            France, Metropolitan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.FrenchGuiana">
            <summary>
            French Guiana
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.FrenchPolynesia">
            <summary>
            French Polynesia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.FrenchSouthernTerritories">
            <summary>
            French Southern Territories
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Gabon">
            <summary>
            Gabon
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Gambia">
            <summary>
            Gambia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Georgia">
            <summary>
            Georgia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Germany">
            <summary>
            Germany
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Ghana">
            <summary>
            Ghana
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Gibraltar">
            <summary>
            Gibraltar
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Greece">
            <summary>
            Greece
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Greenland">
            <summary>
            Greenland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Grenada">
            <summary>
            Grenada
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Guadeloupe">
            <summary>
            Guadeloupe
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Guam">
            <summary>
            Guam
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Guatemala">
            <summary>
            Guatemala
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Guinea">
            <summary>
            Guinea
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.GuineaBissau">
            <summary>
            Guinea-Bissau
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Guyana">
            <summary>
            Guyana
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Haiti">
            <summary>
            Haiti
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.HeardIslandAndMcdonaldIslands">
            <summary>
            Heard Island and Mcdonald Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.VaticanCityState">
            <summary>
            Holy See (Vatican City State)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Honduras">
            <summary>
            Honduras
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.HongKong">
            <summary>
            Hong Kong
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Hungary">
            <summary>
            Hungary
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Iceland">
            <summary>
            Iceland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.India">
            <summary>
            India
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Indonesia">
            <summary>
            Indonesia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Iran">
            <summary>
            Iran, Islamic Republic of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Iraq">
            <summary>
            Iraq
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Ireland">
            <summary>
            Ireland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Israel">
            <summary>
            Israel
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Italy">
            <summary>
            Italy
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Jamaica">
            <summary>
            Jamaica
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Japan">
            <summary>
            Japan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Jordan">
            <summary>
            Jordan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Kazakhstan">
            <summary>
            Kazakhstan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Kenya">
            <summary>
            Kenya
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Kiribati">
            <summary>
            Kiribati
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.DemocraticPeoplesRepublicOfKorea">
            <summary>
            Korea, Democratic People's Republic of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.RepublicOfKorea">
            <summary>
            Korea, Republic of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Kuwait">
            <summary>
            Kuwait
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Kyrgyzstan">
            <summary>
            Kyrgyzstan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.LaoPeoplesDemocraticRepublic">
            <summary>
            Lao People's Democratic Republic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Latvia">
            <summary>
            Latvia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Lebanon">
            <summary>
            Lebanon
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Lesotho">
            <summary>
            Lesotho
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Liberia">
            <summary>
            Liberia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.LibyanArabJamahiriya">
            <summary>
            Libyan Arab Jamahiriya
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Liechtenstein">
            <summary>
            Liechtenstein
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Lithuania">
            <summary>
            Lithuania
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Luxembourg">
            <summary>
            Luxembourg
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Macao">
            <summary>
            Macao
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Macedonia">
            <summary>
            Macedonia, the Former Yugosalv Republic of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Madagascar">
            <summary>
            Madagascar
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Malawi">
            <summary>
            Malawi
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Malaysia">
            <summary>
            Malaysia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Maldives">
            <summary>
            Maldives
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Mali">
            <summary>
            Mali
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Malta">
            <summary>
            Malta
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.MarshallIslands">
            <summary>
            Marshall Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Martinique">
            <summary>
            Martinique
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Mauritania">
            <summary>
            Mauritania
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Mauritius">
            <summary>
            Mauritius
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Mayotte">
            <summary>
            Mayotte
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Mexico">
            <summary>
            Mexico
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Micronesia">
            <summary>
            Micronesia, Federated States of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Moldova">
            <summary>
            Moldova, Republic of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Monaco">
            <summary>
            Monaco
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Mongolia">
            <summary>
            Mongolia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Montserrat">
            <summary>
            Montserrat
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Morocco">
            <summary>
            Morocco
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Mozambique">
            <summary>
            Mozambique
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Myanmar">
            <summary>
            Myanmar
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Namibia">
            <summary>
            Namibia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Nauru">
            <summary>
            Nauru
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Nepal">
            <summary>
            Nepal
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Netherlands">
            <summary>
            Netherlands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.NetherlandsAntilles">
            <summary>
            Netherlands Antilles
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.NewCaledonia">
            <summary>
            New Caledonia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.NewZealand">
            <summary>
            New Zealand
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Nicaragua">
            <summary>
            Nicaragua
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Niger">
            <summary>
            Niger
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Nigeria">
            <summary>
            Nigeria
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Niue">
            <summary>
            Niue
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.NorfolkIsland">
            <summary>
            Norfolk Island
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.NorthernMarianaIslands">
            <summary>
            Northern Mariana Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Norway">
            <summary>
            Norway
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Oman">
            <summary>
            Oman
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Pakistan">
            <summary>
            Pakistan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Palau">
            <summary>
            Palau
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.PalestinianTerritory">
            <summary>
            Palestinian Territory
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Panama">
            <summary>
            Panama
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.PapuaNewGuinea">
            <summary>
            Papua New Guinea
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Paraguay">
            <summary>
            Paraguay
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Peru">
            <summary>
            Peru
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Philippines">
            <summary>
            Philippines
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Pitcairn">
            <summary>
            Pitcairn
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Poland">
            <summary>
            Poland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Portugal">
            <summary>
            Portugal
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.PuertoRico">
            <summary>
            Puerto Rico
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Qatar">
            <summary>
            Qatar
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Reunion">
            <summary>
            Reunion
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Romania">
            <summary>
            Romania
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.RussianFederation">
            <summary>
            Russian Federation
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Rwanda">
            <summary>
            Rwanda
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.SaintHelena">
            <summary>
            Saint Helena
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.SaintKittsAndNevis">
            <summary>
            Saint Kitts and Nevis
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.SaintLucia">
            <summary>
            Saint Lucia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.SaintPierreAndMiquelon">
            <summary>
            Saint Pierre and Miquelon
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.SaintVincentAndtheGrenadines">
            <summary>
            Saint Vincent and the Grenadines
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Samoa">
            <summary>
            Samoa
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.SanMarino">
            <summary>
            San Marino
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.SaoTomeAndPrincipe">
            <summary>
            Sao Tome and Principe
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.SaudiArabia">
            <summary>
            Saudi Arabia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Senegal">
            <summary>
            Senegal
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.SerbiaAndMontenegro">
            <summary>
            Serbia and Montenegro
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Seychelles">
            <summary>
            Seychelles
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.SierraLeone">
            <summary>
            Sierra Leone
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Singapore">
            <summary>
            Singapore
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Slovakia">
            <summary>
            Slovakia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Slovenia">
            <summary>
            Slovenia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.SolomonIslands">
            <summary>
            Solomon Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Somalia">
            <summary>
            Somalia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.SouthAfrica">
            <summary>
            South Africa
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.SouthGeorgiaAndTheSouthSAndwichIslands">
            <summary>
            South Georgia and the South Sandwich Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Spain">
            <summary>
            Spain
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.SriLanka">
            <summary>
            Sri Lanka
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Sudan">
            <summary>
            Sudan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Suriname">
            <summary>
            Suriname
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.SvalbardAndJanMayen">
            <summary>
            Svalbard and Jan Mayen
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Swaziland">
            <summary>
            Swaziland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Sweden">
            <summary>
            Sweden
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Switzerland">
            <summary>
            Switzerland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.SyrianArabRepublic">
            <summary>
            Syrian Arab Republic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Taiwan">
            <summary>
            Taiwan, Province of China
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Tajikistan">
            <summary>
            Tajikistan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Tanzania">
            <summary>
            Tanzania, United Republic of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Thailand">
            <summary>
            Thailand
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Togo">
            <summary>
            Togo
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Tokelau">
            <summary>
            Tokelau
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Tonga">
            <summary>
            Tonga
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.TrinidadAndTobago">
            <summary>
            Trinidad and Tobago
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Tunisia">
            <summary>
            Tunisia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Turkey">
            <summary>
            Turkey
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Turkmenistan">
            <summary>
            Turkmenistan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.TurksAndCaicosIslands">
            <summary>
            Turks and Caicos Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Tuvalu">
            <summary>
            Tuvalu
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Uganda">
            <summary>
            Uganda
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Ukraine">
            <summary>
            Ukraine
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.UnitedArabEmirates">
            <summary>
            United Arab Emirates
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.UnitedKingdom">
            <summary>
            United Kingdom
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.UnitedStates">
            <summary>
            United States
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.UnitedStatesMinorOutlyingIslands">
            <summary>
            United States Minor Outlying Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Uruguay">
            <summary>
            Uruguay
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Uzbekistan">
            <summary>
            Uzbekistan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Vanuatu">
            <summary>
            Vanuatu
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Venezuela">
            <summary>
            Venezuela
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Vietnam">
            <summary>
            Vietnam
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.VirginIslandsBritish">
            <summary>
            Virgin Islands, British
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.VirginIslandsUs">
            <summary>
            Virgin Islands, U.S.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.WallisandFutuna">
            <summary>
            Wallis and Futuna
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.WesternSahara">
            <summary>
            Western Sahara
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Yemen">
            <summary>
            Yemen
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Yugoslavia">
            <summary>
            Yugoslavia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Zambia">
            <summary>
            Zambia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Country.Zimbabwe">
            <summary>
            Zimbabwe
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.DateRestrictType">
            <summary>
            Date restriction type.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.DateRestrictType.Days">
            <summary>
            Days restriction.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.DateRestrictType.Weeks">
            <summary>
            Weeks restriction.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.DateRestrictType.Months">
            <summary>
            Months restriction.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.DateRestrictType.Years">
            <summary>
            Years restriction.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.DominantColorType">
            <summary>
            Color Type
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.DominantColorType.Black">
            <summary>
            Black.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.DominantColorType.Blue">
            <summary>
            Blue.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.DominantColorType.Brown">
            <summary>
            Brown.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.DominantColorType.Gray">
            <summary>
            Gray.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.DominantColorType.Green">
            <summary>
            Green.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.DominantColorType.Purple">
            <summary>
            Purple.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.DominantColorType.Teal">
            <summary>
            Teal.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.DominantColorType.White">
            <summary>
            White.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.DominantColorType.Yellow">
            <summary>
            Yellow.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.EncodingType">
            <summary>
            Encoding Types.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.Utf8">
            <summary>
            Unicode(UTF-8)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.ArabicWindows1256">
            <summary>
            Arabic(Windows-1256)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.CentralEuropeanLatin2Iso88592">
            <summary>
            Central European Latin-2 (ISO-8859-2)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.CentralEuropeanWindows1250">
            <summary>
            Central European(Windows-1250)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.CentralEuropeanCp852">
            <summary>
            Central European(CP852)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.ChineseSimplifiedGb2312">
            <summary>
            Chinese Simplified(GB2312)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.ChineseSimplifiedGb18030">
            <summary>
            Chinese Simplified(GB18030)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.ChineseTraditionalBig5">
            <summary>
            Chinese Traditional(Big5)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.CyrillicIso88595">
            <summary>
            Cyrillic(ISO-8859-5)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.CyrillicKoi8R">
            <summary>
            Cyrillic(KOI8-R)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.CyrillicWindows1251">
            <summary>
            Cyrillic(Windows-1251)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.CyrillicRussianCp866">
            <summary>
            Cyrillic/Russian(CP-866)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.GreekIso88597">
            <summary>
            Greek(ISO-8859-7)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.HebrewIso88598I">
            <summary>
            Hebrew(ISO-8859-8-I)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.HebrewWindows1255">
            <summary>
            Hebrew(Windows-1255)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.JapaneseShift_Jis">
            <summary>
            Japanese(Shift_JIS)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.JapaneseEucjp">
            <summary>
            Japanese(EUC-JP)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.JapaneseIso2022Jp">
            <summary>
            Japanese(ISO-2022-JP)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.KoreanEuckr">
            <summary>
            Korean(EUC-KR)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.NordicLatin6Iso885910">
            <summary>
            Nordic Latin-6 (ISO-8859-10)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.SouthEuropeanLatin3Iso88593">
            <summary>
            South European Latin-3 (ISO-8859-3)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.TurkishLatin5Iso88599">
            <summary>
            Turkish Latin-5 (ISO-8859-9)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.TurkishWindows1254">
            <summary>
            Turkish(Windows-1254)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.VietnameseWindows1258">
            <summary>
            Vietnamese(Windows-1258)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.WestEuropeanLatin1Iso88591">
            <summary>
            West European Latin-1 (ISO-8859-1)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.EncodingType.WestEuropeanLatin9Iso885915">
            <summary>
            West European Latin-9 (ISO-8859-15)
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.Extensions.CountryExtension">
            <summary>
            Country Extension methods.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.Enums.Extensions.CountryExtension.ToCr(GoogleApi.Entities.Search.Common.Enums.Country)">
            <summary>
            Returns the Country restriction.
            </summary>
            <param name="country">The <see cref="T:GoogleApi.Entities.Search.Common.Enums.Country"/>.</param>
            <returns>The <see cref="T:System.String"/> representation of the <see cref="T:GoogleApi.Entities.Search.Common.Enums.Country"/> as 'cr' request parameter.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.Extensions.DateRestrictTypeExtension">
            <summary>
            Date Restrict Type Extension.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.Enums.Extensions.DateRestrictTypeExtension.ToTypeString(GoogleApi.Entities.Search.Common.Enums.DateRestrictType)">
            <summary>
            Converts enum value to string.
            </summary>
            <param name="dateRestrictType">The enum to convert.</param>
            <returns>The string representation of the enum value for the search request.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.Extensions.EncodingTypeExtension">
            <summary>
            Encoding type Extension methods.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.Enums.Extensions.EncodingTypeExtension.ToCode(GoogleApi.Entities.Search.Common.Enums.EncodingType)">
            <summary>
            Returns the encoding type code.
            </summary>
            <param name="encodingType">The <see cref="T:GoogleApi.Entities.Search.Common.Enums.EncodingType"/>.</param>
            <returns>Encoded name as string.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.Extensions.GeoLocationExtension">
            <summary>
            Country Extension methods.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.Enums.Extensions.GeoLocationExtension.ToGl(GoogleApi.Entities.Search.Common.Enums.GeoLocation)">
            <summary>
            Return the GeoLocation code.
            </summary>
            <param name="geoLocation">The <see cref="T:GoogleApi.Entities.Search.Common.Enums.Country"/>.</param>
            <returns>The <see cref="T:System.String"/> representation of the <see cref="T:GoogleApi.Entities.Search.Common.Enums.Country"/> as 'gl' request parameter.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.Extensions.LanguageExtension">
            <summary>
            Language Extension methods.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.Enums.Extensions.LanguageExtension.ToHl(GoogleApi.Entities.Search.Common.Enums.Language)">
            <summary>
            Return the Language code.
            </summary>
            <param name="language"></param>
            <returns></returns>
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.Enums.Extensions.LanguageExtension.AllowSafeSearch(GoogleApi.Entities.Search.Common.Enums.Language)">
            <summary>
            Determines whether the <see cref="T:GoogleApi.Entities.Search.Common.Enums.Language"/> supports safe search filter.
            </summary>
            <param name="language">The <see cref="T:GoogleApi.Entities.Search.Common.Enums.Language"/>.</param>
            <returns>Boolean, indicating if the passed <see cref="T:GoogleApi.Entities.Search.Common.Enums.Language"/> supports safe search filter.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.Extensions.OperatorExtension">
            <summary>
            Operator extensions.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.Enums.Extensions.OperatorExtension.ToStringOperator(GoogleApi.Entities.Search.Common.Enums.Operator)">
            <summary>
            Converts an <see cref="T:GoogleApi.Entities.Search.Common.Enums.Operator"/> to a <see cref="T:System.String"/> for a country restriction expression.
            </summary>
            <param name="operator">The <see cref="T:GoogleApi.Entities.Search.Common.Enums.Operator"/> to convert.</param>
            <returns>The <see cref="T:System.String"/> representation of the <see cref="T:GoogleApi.Entities.Search.Common.Enums.Operator"/>.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.Extensions.SiteSearchFilterExtension">
            <summary>
            Site Search Filter Extension.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.Enums.Extensions.SiteSearchFilterExtension.ToFilterString(GoogleApi.Entities.Search.Common.Enums.SiteSearchFilter)">
            <summary>
            Converts enum value to string.
            </summary>
            <param name="siteSearch">The enum to convert.</param>
            <returns>The string representation of the enum value for the search request.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.FileType">
            <summary>
            File Types.
            https://support.google.com/webmasters/answer/35287?hl=en
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.Unknown">
            <summary>
            Unknown.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.AdobeFlash">
            <summary>
            Adobe Flash (.swf)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.AdobePortableDocumentFormat">
            <summary>
            Adobe Portable Document Format (.pdf)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.AdobeFlashPostScript">
            <summary>
            Adobe PostScript (.ps)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.AutodeskDesignWebFormat">
            <summary>
            Autodesk Design Web Format (.dwf)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.GoogleEarth">
            <summary>
            Google Earth (.kml, .kmz, .gpx)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.HancomHanword">
            <summary>
            Hancom Hanword (.hwp)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.Html">
            <summary>
            HTML (.htm, .html, other file extensions)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.MicrosoftExcel">
            <summary>
            Microsoft Excel (.xls, .xlsx)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.MicrosoftPowerPoint">
            <summary>
            Microsoft PowerPoint (.ppt, .pptx)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.MicrosoftWord">
            <summary>
            Microsoft Word (.doc, .docx)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.AdobeFlaOpenOfficePresentationsh">
            <summary>
            OpenOffice presentation (.odp)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.OpenOfficeSpreadsheet">
            <summary>
            OpenOffice Spreadsheet (.ods)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.OpenOfficeText">
            <summary>
            OpenOffice Text (.odt)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.RichTextFormat">
            <summary>
            Rich Text Format (.rtf)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.ScalableVectorGraphics">
            <summary>
            Scalable Vector Graphics (.svg)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.LaTeX">
            <summary>
            TeX/LaTeX (.tex)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.Text">
            <summary>
            Text (.txt, .text, other file extensions), including source code in common programming languages:
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.BasicSourceCode">
            <summary>
            Basic source code (.bas)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.CSourceCode">
            <summary>
            C/C++ source code (.c, .cc, .cpp, .cxx, .h, .hpp)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.CSharpSourceCode">
            <summary>
            C# source code (.cs)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.JavaSourceCode">
            <summary>
            Java source code (.java)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.PerlSourceCode">
            <summary>
            Perl source code (.pl)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.PythonSourceCode">
            <summary>
            Python source code (.py)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.WirelessMarkupLanguage">
            <summary>
            Wireless Markup Language (.wml, .wap)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.FileType.Xml">
            <summary>
            XML (.xml)
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.GeoLocation">
            <summary>
            GeoLocation.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Afghanistan">
            <summary>
            Afghanistan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Albania">
            <summary>
            Albania
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Algeria">
            <summary>
            Algeria
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.AmericanSamoa">
            <summary>
            American Samoa
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Andorra">
            <summary>
            Andorra
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Angola">
            <summary>
            Angola
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Anguilla">
            <summary>
            Anguilla
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Antarctica">
            <summary>
            Antarctica
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.AntiguaAndBarbuda">
            <summary>
            Antigua and Barbuda
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Argentina">
            <summary>
            Argentina
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Armenia">
            <summary>
            Armenia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Aruba">
            <summary>
            Aruba
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Australia">
            <summary>
            Australia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Austria">
            <summary>
            Austria
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Azerbaijan">
            <summary>
            Azerbaijan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Bahamas">
            <summary>
            Bahamas
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Bahrain">
            <summary>
            Bahrain
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Bangladesh">
            <summary>
            Bangladesh
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Barbados">
            <summary>
            Barbados
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Belarus">
            <summary>
            Belarus
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Belgium">
            <summary>
            Belgium
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Belize">
            <summary>
            Belize
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Benin">
            <summary>
            Benin
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Bermuda">
            <summary>
            Bermuda
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Bhutan">
            <summary>
            Bhutan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Bolivia">
            <summary>
            Bolivia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.BosniaAndHerzegovina">
            <summary>
            Bosnia and Herzegovina
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Botswana">
            <summary>
            Botswana
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.BouvetIsland">
            <summary>
            Bouvet Island
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Brazil">
            <summary>
            Brazil
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.BritishIndianOceanTerritory">
            <summary>
            British Indian Ocean Territory
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.BruneiDarussalam">
            <summary>
            Brunei Darussalam
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Bulgaria">
            <summary>
            Bulgaria
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.BurkinaFaso">
            <summary>
            Burkina Faso
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Burundi">
            <summary>
            Burundi
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Cambodia">
            <summary>
            Cambodia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Cameroon">
            <summary>
            Cameroon
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Canada">
            <summary>
            Canada
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.CapeVerde">
            <summary>
            Cape Verde
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.CaymanIslands">
            <summary>
            Cayman Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.CentralAfricanRepublic">
            <summary>
            Central African Republic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Chad">
            <summary>
            Chad
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Chile">
            <summary>
            Chile
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.China">
            <summary>
            China
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.ChristmasIsland">
            <summary>
            Christmas Island
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.CocosIslands">
            <summary>
            Cocos (Keeling) Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Colombia">
            <summary>
            Colombia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Comoros">
            <summary>
            Comoros
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Congo">
            <summary>
            Congo
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.TheDemocraticRepublicOfCongo">
            <summary>
            Congo, the Democratic Republic of the
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.CookIslands">
            <summary>
            Cook Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.CostaRica">
            <summary>
            Costa Rica
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.CoteDivoire">
            <summary>
            Cote D'ivoire
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Croatia">
            <summary>
            Croatia (Hrvatska)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Cuba">
            <summary>
            Cuba
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Cyprus">
            <summary>
            Cyprus
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.CzechRepublic">
            <summary>
            Czech Republic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Denmark">
            <summary>
            Denmark
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Djibouti">
            <summary>
            Djibouti
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Dominica">
            <summary>
            Dominica
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.DominicanRepublic">
            <summary>
            Dominican Republic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.EastTimor">
            <summary>
            East Timor
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Ecuador">
            <summary>
            Ecuador
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Egypt">
            <summary>
            Egypt
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.ElSalvador">
            <summary>
            El Salvador
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.EquatorialGuinea">
            <summary>
            Equatorial Guinea
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Eritrea">
            <summary>
            Eritrea
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Estonia">
            <summary>
            Estonia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Ethiopia">
            <summary>
            Ethiopia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.EuropeanUnion">
            <summary>
            European Union
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.FalklandIslAndsMalvinas">
            <summary>
            Falkland Islands (Malvinas)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.FaroeIslands">
            <summary>
            Faroe Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Fiji">
            <summary>
            Fiji
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Finland">
            <summary>
            Finland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.France">
            <summary>
            France
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.FranceMetropolitan">
            <summary>
            France, Metropolitan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.FrenchGuiana">
            <summary>
            French Guiana
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.FrenchPolynesia">
            <summary>
            French Polynesia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.FrenchSouthernTerritories">
            <summary>
            French Southern Territories
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Gabon">
            <summary>
            Gabon
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Gambia">
            <summary>
            Gambia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Georgia">
            <summary>
            Georgia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Germany">
            <summary>
            Germany
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Ghana">
            <summary>
            Ghana
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Gibraltar">
            <summary>
            Gibraltar
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Greece">
            <summary>
            Greece
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Greenland">
            <summary>
            Greenland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Grenada">
            <summary>
            Grenada
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Guadeloupe">
            <summary>
            Guadeloupe
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Guam">
            <summary>
            Guam
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Guatemala">
            <summary>
            Guatemala
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Guinea">
            <summary>
            Guinea
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.GuineaBissau">
            <summary>
            Guinea-Bissau
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Guyana">
            <summary>
            Guyana
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Haiti">
            <summary>
            Haiti
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.HeardIslandAndMcdonaldIslands">
            <summary>
            Heard Island and Mcdonald Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.VaticanCityState">
            <summary>
            Holy See (Vatican City State)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Honduras">
            <summary>
            Honduras
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.HongKong">
            <summary>
            Hong Kong
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Hungary">
            <summary>
            Hungary
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Iceland">
            <summary>
            Iceland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.India">
            <summary>
            India
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Indonesia">
            <summary>
            Indonesia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Iran">
            <summary>
            Iran, Islamic Republic of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Iraq">
            <summary>
            Iraq
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Ireland">
            <summary>
            Ireland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Israel">
            <summary>
            Israel
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Italy">
            <summary>
            Italy
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Jamaica">
            <summary>
            Jamaica
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Japan">
            <summary>
            Japan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Jordan">
            <summary>
            Jordan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Kazakhstan">
            <summary>
            Kazakhstan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Kenya">
            <summary>
            Kenya
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Kiribati">
            <summary>
            Kiribati
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.DemocraticPeoplesRepublicOfKorea">
            <summary>
            Korea, Democratic People's Republic of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.RepublicOfKorea">
            <summary>
            Korea, Republic of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Kuwait">
            <summary>
            Kuwait
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Kyrgyzstan">
            <summary>
            Kyrgyzstan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.LaoPeoplesDemocraticRepublic">
            <summary>
            Lao People's Democratic Republic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Latvia">
            <summary>
            Latvia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Lebanon">
            <summary>
            Lebanon
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Lesotho">
            <summary>
            Lesotho
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Liberia">
            <summary>
            Liberia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.LibyanArabJamahiriya">
            <summary>
            Libyan Arab Jamahiriya
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Liechtenstein">
            <summary>
            Liechtenstein
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Lithuania">
            <summary>
            Lithuania
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Luxembourg">
            <summary>
            Luxembourg
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Macao">
            <summary>
            Macao
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Macedonia">
            <summary>
            Macedonia, the Former Yugosalv Republic of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Madagascar">
            <summary>
            Madagascar
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Malawi">
            <summary>
            Malawi
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Malaysia">
            <summary>
            Malaysia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Maldives">
            <summary>
            Maldives
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Mali">
            <summary>
            Mali
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Malta">
            <summary>
            Malta
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.MarshallIslands">
            <summary>
            Marshall Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Martinique">
            <summary>
            Martinique
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Mauritania">
            <summary>
            Mauritania
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Mauritius">
            <summary>
            Mauritius
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Mayotte">
            <summary>
            Mayotte
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Mexico">
            <summary>
            Mexico
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Micronesia">
            <summary>
            Micronesia, Federated States of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Moldova">
            <summary>
            Moldova, Republic of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Monaco">
            <summary>
            Monaco
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Mongolia">
            <summary>
            Mongolia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Montserrat">
            <summary>
            Montserrat
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Morocco">
            <summary>
            Morocco
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Mozambique">
            <summary>
            Mozambique
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Myanmar">
            <summary>
            Myanmar
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Namibia">
            <summary>
            Namibia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Nauru">
            <summary>
            Nauru
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Nepal">
            <summary>
            Nepal
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Netherlands">
            <summary>
            Netherlands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.NetherlandsAntilles">
            <summary>
            Netherlands Antilles
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.NewCaledonia">
            <summary>
            New Caledonia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.NewZealand">
            <summary>
            New Zealand
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Nicaragua">
            <summary>
            Nicaragua
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Niger">
            <summary>
            Niger
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Nigeria">
            <summary>
            Nigeria
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Niue">
            <summary>
            Niue
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.NorfolkIsland">
            <summary>
            Norfolk Island
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.NorthernMarianaIslands">
            <summary>
            Northern Mariana Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Norway">
            <summary>
            Norway
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Oman">
            <summary>
            Oman
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Pakistan">
            <summary>
            Pakistan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Palau">
            <summary>
            Palau
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.PalestinianTerritory">
            <summary>
            Palestinian Territory
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Panama">
            <summary>
            Panama
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.PapuaNewGuinea">
            <summary>
            Papua New Guinea
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Paraguay">
            <summary>
            Paraguay
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Peru">
            <summary>
            Peru
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Philippines">
            <summary>
            Philippines
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Pitcairn">
            <summary>
            Pitcairn
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Poland">
            <summary>
            Poland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Portugal">
            <summary>
            Portugal
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.PuertoRico">
            <summary>
            Puerto Rico
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Qatar">
            <summary>
            Qatar
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Reunion">
            <summary>
            Reunion
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Romania">
            <summary>
            Romania
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.RussianFederation">
            <summary>
            Russian Federation
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Rwanda">
            <summary>
            Rwanda
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.SaintHelena">
            <summary>
            Saint Helena
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.SaintKittsAndNevis">
            <summary>
            Saint Kitts and Nevis
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.SaintLucia">
            <summary>
            Saint Lucia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.SaintPierreAndMiquelon">
            <summary>
            Saint Pierre and Miquelon
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.SaintVincentAndtheGrenadines">
            <summary>
            Saint Vincent and the Grenadines
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Samoa">
            <summary>
            Samoa
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.SanMarino">
            <summary>
            San Marino
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.SaoTomeAndPrincipe">
            <summary>
            Sao Tome and Principe
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.SaudiArabia">
            <summary>
            Saudi Arabia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Senegal">
            <summary>
            Senegal
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.SerbiaAndMontenegro">
            <summary>
            Serbia and Montenegro
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Seychelles">
            <summary>
            Seychelles
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.SierraLeone">
            <summary>
            Sierra Leone
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Singapore">
            <summary>
            Singapore
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Slovakia">
            <summary>
            Slovakia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Slovenia">
            <summary>
            Slovenia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.SolomonIslands">
            <summary>
            Solomon Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Somalia">
            <summary>
            Somalia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.SouthAfrica">
            <summary>
            South Africa
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.SouthGeorgiaAndTheSouthSAndwichIslands">
            <summary>
            South Georgia and the South Sandwich Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Spain">
            <summary>
            Spain
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.SriLanka">
            <summary>
            Sri Lanka
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Sudan">
            <summary>
            Sudan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Suriname">
            <summary>
            Suriname
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.SvalbardAndJanMayen">
            <summary>
            Svalbard and Jan Mayen
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Swaziland">
            <summary>
            Swaziland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Sweden">
            <summary>
            Sweden
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Switzerland">
            <summary>
            Switzerland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.SyrianArabRepublic">
            <summary>
            Syrian Arab Republic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Taiwan">
            <summary>
            Taiwan, Province of China
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Tajikistan">
            <summary>
            Tajikistan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Tanzania">
            <summary>
            Tanzania, United Republic of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Thailand">
            <summary>
            Thailand
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Togo">
            <summary>
            Togo
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Tokelau">
            <summary>
            Tokelau
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Tonga">
            <summary>
            Tonga
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.TrinidadAndTobago">
            <summary>
            Trinidad and Tobago
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Tunisia">
            <summary>
            Tunisia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Turkey">
            <summary>
            Turkey
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Turkmenistan">
            <summary>
            Turkmenistan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.TurksAndCaicosIslands">
            <summary>
            Turks and Caicos Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Tuvalu">
            <summary>
            Tuvalu
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Uganda">
            <summary>
            Uganda
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Ukraine">
            <summary>
            Ukraine
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.UnitedArabEmirates">
            <summary>
            United Arab Emirates
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.UnitedKingdom">
            <summary>
            United Kingdom
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.UnitedStates">
            <summary>
            United States
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.UnitedStatesMinorOutlyingIslands">
            <summary>
            United States Minor Outlying Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Uruguay">
            <summary>
            Uruguay
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Uzbekistan">
            <summary>
            Uzbekistan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Vanuatu">
            <summary>
            Vanuatu
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Venezuela">
            <summary>
            Venezuela
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Vietnam">
            <summary>
            Vietnam
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.VirginIslandsBritish">
            <summary>
            Virgin Islands, British
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.VirginIslandsUs">
            <summary>
            Virgin Islands, U.S.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.WallisandFutuna">
            <summary>
            Wallis and Futuna
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.WesternSahara">
            <summary>
            Western Sahara
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Yemen">
            <summary>
            Yemen
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Yugoslavia">
            <summary>
            Yugoslavia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Zambia">
            <summary>
            Zambia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.GeoLocation.Zimbabwe">
            <summary>
            Zimbabwe
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.ImageSize">
            <summary>
            Image Type
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.ImageSize.Icon">
            <summary>
            Icon.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.ImageSize.Small">
            <summary>
            Small.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.ImageSize.Medium">
            <summary>
            Medium.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.ImageSize.Large">
            <summary>
            Large.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.ImageSize.Xlarge">
            <summary>
            Xlarge.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.ImageSize.Xxlarge">
            <summary>
            Xxlarge.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.ImageSize.Huge">
            <summary>
            Huge.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.ImageType">
            <summary>
            Image Type
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.ImageType.Clipart">
            <summary>
            Clipart.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.ImageType.Face">
            <summary>
            Face.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.ImageType.Lineart">
            <summary>
            Lineart.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.ImageType.News">
            <summary>
            News.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.ImageType.Photo">
            <summary>
            Photo.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.Language">
            <summary>
            Supported Interface Languages.
            Google supports more than 80 languages.
            The default interface language is English. 
            The following list identifies all of the interface languages that Google supports.
            https://developers.google.com/custom-search/docs/xml_results_appendices#interfaceLanguages
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Afrikaans">
            <summary>
            Afrikaans
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Albanian">
            <summary>
            Albanian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Amharic">
            <summary>
            Amharic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Arabic">
            <summary>
            Arabic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Azerbaijani">
            <summary>
            Azerbaijani
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Basque">
            <summary>
            Basque
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Belarusian">
            <summary>
            Belarusian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Bengali">
            <summary>
            Bengali
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Bihari">
            <summary>
            Bihari
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Bosnian">
            <summary>
            Bosnian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Bulgarian">
            <summary>
            Bulgarian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Catalan">
            <summary>
            Catalan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Chinese">
            <summary>
            Chinese.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.ChineseSimplified">
            <summary>
            Chinese (Simplified)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.ChineseTraditional">
            <summary>
            Chinese (Traditional)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Croatian">
            <summary>
            Croatian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Czech">
            <summary>
            Czech
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Danish">
            <summary>
            Danish
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Dutch">
            <summary>
            Dutch
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.English">
            <summary>
            English
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Esperanto">
            <summary>
            Esperanto
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Estonian">
            <summary>
            Estonian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Faroese">
            <summary>
            Faroese
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Finnish">
            <summary>
            Finnish
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.French">
            <summary>
            French
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Frisian">
            <summary>
            Frisian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Galician">
            <summary>
            Galician
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Georgian">
            <summary>
            Georgian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.German">
            <summary>
            German
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Greek">
            <summary>
            Greek
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Gujarati">
            <summary>
            Gujarati
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Hebrew">
            <summary>
            Hebrew
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Hindi">
            <summary>
            Hindi
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Hungarian">
            <summary>
            Hungarian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Icelandic">
            <summary>
            Icelandic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Indonesian">
            <summary>
            Indonesian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Interlingua">
            <summary>
            Interlingua
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Irish">
            <summary>
            Irish
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Italian">
            <summary>
            Italian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Japanese">
            <summary>
            Japanese
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Javanese">
            <summary>
            Javanese
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Kannada">
            <summary>
            Kannada
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Korean">
            <summary>
            Korean
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Latin">
            <summary>
            Latin
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Latvian">
            <summary>
            Latvian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Lithuanian">
            <summary>
            Lithuanian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Macedonian">
            <summary>
            Macedonian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Malay">
            <summary>
            Malay
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Malayam">
            <summary>
            Malayam
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Maltese">
            <summary>
            Maltese
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Marathi">
            <summary>
            Marathi
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Nepali">
            <summary>
            Nepali
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Norwegian">
            <summary>
            Norwegian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.NorwegianNynorsk">
            <summary>
            Norwegian (Nynorsk)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Occitan">
            <summary>
            Occitan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Persian">
            <summary>
            Persian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Polish">
            <summary>
            Polish
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Portuguese">
            <summary>
            Portuguese (Brazil)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.PortugueseBrazil">
            <summary>
            Portuguese (Brazil)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.PortuguesePortugal">
            <summary>
            Portuguese (Portugal)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Punjabi">
            <summary>
            Punjabi
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Romanian">
            <summary>
            Romanian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Russian">
            <summary>
            Russian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.ScotsGaelic">
            <summary>
            Scots Gaelic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Serbian">
            <summary>
            Serbian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Sinhalese">
            <summary>
            Sinhalese
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Slovak">
            <summary>
            Slovak
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Slovenian">
            <summary>
            Slovenian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Spanish">
            <summary>
            Spanish
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Sudanese">
            <summary>
            Sudanese
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Swahili">
            <summary>
            Swahili
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Swedish">
            <summary>
            Swedish
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Tagalog">
            <summary>
            Tagalog
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Tamil">
            <summary>
            Tamil
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Telugu">
            <summary>
            Telugu
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Thai">
            <summary>
            Thai
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Tigrinya">
            <summary>
            Tigrinya
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Turkish">
            <summary>
            Turkish
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Ukrainian">
            <summary>
            Ukrainian
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Urdu">
            <summary>
            Urdu
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Uzbek">
            <summary>
            Uzbek
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Vietnamese">
            <summary>
            Vietnamese
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Welsh">
            <summary>
            Welsh
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Xhosa">
            <summary>
            Xhosa
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Language.Zulu">
            <summary>
            Zulu
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.Operator">
            <summary>
            Operator.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Operator.And">
            <summary>
            The AND operator (.) returns results that are in the intersection of the collections to either side of the "." operator.
            This example removes all results originating from France or Italy:
            Example: cr= (-countryFR).(-countryIT) 
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.Operator.Or">
            <summary>
            The OR operator (.) returns results that are in either the collection to the left or the collection to the right of the pipe("|") operator.
            This example returns all results that originate from France or Italy:
            cr= countryFR | countryIT
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.RightsType">
            <summary>
            Rights - Filters based on licensing.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.RightsType.Cc_PublicDomain">
            <summary>
            Cc_PublicDomain.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.RightsType.Cc_Attribute">
            <summary>
            Cc_Attribute.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.RightsType.Cc_ShareAlike">
            <summary>
            Cc_ShareAlike.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.RightsType.Cc_NonCommercial">
            <summary>
            Cc_NonCommercial.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.RightsType.Cc_NonDerived">
            <summary>
            Cc_NonDerived.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.SafetyLevel">
            <summary>
            Search safety level.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.SafetyLevel.Off">
            <summary>
            Disables SafeSearch filtering. (default)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.SafetyLevel.Medium">
            <summary>
            Enables moderate SafeSearch filtering.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.SafetyLevel.High">
            <summary>
            Enables highest level of SafeSearch filtering.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.SearchType">
            <summary>
            Search Type.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.SearchType.Web">
            <summary>
            Web.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.SearchType.Image">
            <summary>
            Image.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.SearchType.Video">
            <summary>
            Video.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.SiteSearchFilter">
            <summary>
            Site Search Filter.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.SiteSearchFilter.Include">
            <summary>
            Include.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.SiteSearchFilter.Exclude">
            <summary>
            Exclude.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.SortBy">
            <summary>
            The sort expression to apply to the results.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.SortBy.Rank">
            <summary>
            Rank.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.SortBy.Date">
            <summary>
            Date.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Enums.SortOrder">
            <summary>
            The direction to sort the search results, either Ascending or Descending.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.SortOrder.Ascending">
            <summary>
            Ascending.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Common.Enums.SortOrder.Descending">
            <summary>
            Descending.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Facet">
            <summary>
            A facet object (refinements) you can use for refining a search.
            https://developers.google.com/custom-search/docs/refinements#create
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Facet.Anchor">
            <summary>
            The displayable name of the item, which you should use when displaying the item to a human.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Facet.Label">
            <summary>
            The label of the given facet item, which you can use to refine your search.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Facet.LabelWithOp">
            <summary>
            Label With Op.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Item">
            <summary>
            A search result item.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Item.Kind">
            <summary>
            A unique identifier for the type of current object. For this API, it is customsearch#result.	
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Item.Title">
            <summary>
            The title of the search result, in plain text.	
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Item.HtmlTitle">
            <summary>
            The title of the search result, in HTML.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Item.Link">
            <summary>
            The full URL to which the search result is pointing, e.g.http://www.example.com/foo/bar.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Item.DisplayLink">
            <summary>
            An abridged version of this search result’s URL, e.g.www.example.com.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Item.Snippet">
            <summary>
            The snippet of the search result, in plain text.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Item.HtmlSnippet">
            <summary>
            The snippet of the search result, in HTML.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Item.CacheId">
            <summary>
            Indicates the ID of Google's cached version of the search result.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Item.MimeType">
            <summary>
            The MIME type of the search result.	
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Item.FileFormat">
            <summary>
            The file format of the search results.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Item.FormattedUrl">
            <summary>
            The URL displayed after the snippet for each search result.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Item.HtmlFormattedUrl">
            <summary>
            The HTML-formatted URL displayed after the snippet for each search result.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Item.PageMap">
            <summary>
            Contains PageMap information for this search result.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Item.Image">
            <summary>
            Encapsulates all information about an image returned in search results.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Item.Labels">
            <summary>
            Encapsulates all information about refinement labels.	
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.ItemImage">
            <summary>
            
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.ItemImage.ContextLink">
            <summary>
            A URL pointing to the webpage hosting the image.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.ItemImage.Width">
            <summary>
            Image width in pixels.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.ItemImage.Height">
            <summary>
            Image height in pixels.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.ItemImage.ByteSize">
            <summary>
            The size of the image, in pixels.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.ItemImage.ThumbnailLink">
            <summary>
            A URL to the thumbnail image.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.ItemImage.ThumbnailHeight">
            <summary>
            The height of the thumbnail image, in pixels.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.ItemImage.ThumbnailWidth">
            <summary>
            The width of the thumbnail image, in pixels.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Label">
            <summary>
            Label.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Label.Name">
            <summary>
            The name of a refinement label, which you can use to refine searches.
            Don't display this in your user interface; instead, use displayName.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Label.DisplayName">
            <summary>
            The display name of a refinement label. 
            This is the name you should display in your user interface.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Label.LabelWithOp">
            <summary>
            Label With Op.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.PageMap">
            <summary>
            PageMap information.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.PageMap.List">
            <summary>
            PageMap information, keyed by the name of this PageMap.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Promotion">
            <summary>
            The set of promotions. Present only if the custom search engine's configuration files define any promotions for the given query.
            https://developers.google.com/custom-search/docs/promotions.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Promotion.Title">
            <summary>
            The title of the promotion.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Promotion.HtmlTitle">
            <summary>
            The html title of the promotion.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Promotion.Link">
            <summary>
            The URL of the promotion.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Promotion.DisplayLink">
            <summary>
            An abridged version of this search's result URL, e.g. www.example.com.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Promotion.BodyLines">
            <summary>
            An array of block objects for this promotion.
            See Google WebSearch Protocol reference for more information.	
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Promotion.PromotionImage">
            <summary>
            Image associated with this promotion, if there is one.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.PromotionImage">
            <summary>
            Image associated with this promotion, if there is one.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.PromotionImage.Source">
            <summary>
            URL of the image for this promotion link.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.PromotionImage.Width">
            <summary>
            Image width in pixels.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.PromotionImage.Height">
            <summary>
            Image height in pixels.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.QueryInfo">
            <summary>
            Query Information.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.Title">
            <summary>
            A description of the query.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.TotalResults">
            <summary>
            Estimated number of total search results. May not be accurate.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.SearchTerms">
            <summary>
            The search terms entered by the user.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.Count">
            <summary>
            Number of search results returned in this set.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.StartIndex">
            <summary>
            Start - The index of the first result to return.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.StartPage">
            <summary>
            The page number of this set of results, where the page length is set by the count property.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.Language">
            <summary>
            The language of the search results.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.InputEncoding">
            <summary>
            The character encoding supported for search request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.OutputEncoding">
            <summary>
            The character encoding supported for search results.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.SafetyLevel">
            <summary>
            Specifies the SafeSearch level used for filtering out adult results.
            This is a custom property not defined in the OpenSearch spec.Valid parameter values are:
            - off: Disable SafeSearch (default)
            - medium: Enable SafeSearch
            - high: Enable a stricter version of SafeSearch
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.SearchEngineId">
            <summary>
            The identifier of a custom search engine created using the Custom Search Control Panel, if specified in request. 
            This is a custom property not defined in the OpenSearch spec.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.SortExpression">
            <summary>
            Specifies that results should be sorted according to the specified expression. 
            For example, sort by date.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.Filter">
            <summary>
            Activates or deactivates the automatic filtering of Google search results. 
            See Automatic Filtering for more information about Google's search results filters.
            https://developers.google.com/custom-search/docs/xml_results#automaticFiltering
            The default value for the filter parameter is 1, which indicates that the feature is enabled.Valid values for this parameter are:
            - 0: Disabled
            - 1: Enabled
            Note: By default, Google applies filtering to all search results to improve the quality of those results.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.GeoLocation">
            <summary>
            Boosts search results whose country of origin matches the parameter value. 
            See Country Codes for a list of valid values. https://developers.google.com/custom-search/docs/xml_results#countryCodes
            Specifying a gl parameter value in WebSearch requests should improve the relevance of results.
            This is particularly true for international customers and, even more specifically, 
            for customers in English-speaking countries other than the United States.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.CountryRestrict">
            <summary>
            Restricts search results to documents originating in a particular country. 
            You may use Boolean operators in the cr parameter's value. https://developers.google.com/custom-search/docs/xml_results#booleanOperators
            Google WebSearch determines the country of a document by analyzing the following:
            The top-level domain(TLD) of the document's URL.
            The geographic location of the web server's IP address.
            See Country(cr) Parameter Values for a list of valid values for this parameter.
            https://developers.google.com/custom-search/docs/xml_results#countryCollections
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.Googlehost">
            <summary>
            Specifies the Google domain (for example, google.com, google.de, or google.fr) to which the search should be limited.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.DisableCnTwTranslation">
            <summary>
            Enables or disables the Simplified and Traditional Chinese Search feature.
            Supported values are:
            - 0: enabled(default)
            - 1: disabled
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.AndTerms">
            <summary>
            Appends the specified query terms to the query, as if they were combined with a logical AND operator.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.InterfaceLanguage">
            <summary>
            Specifies the interface language (host language) of your user interface. 
            Explicitly setting this parameter improves the performance and the quality of your search results.
            See the Interface Languages section of Internationalizing Queries and Results Presentation for more information, 
            and Supported Interface Languages for a list of supported languages.
            https://developers.google.com/custom-search/docs/xml_results#wsInterfaceLanguages
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.SiteSearch">
            <summary>
            Specifies all search results should be pages either included or excluded, from a given site.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.ExactTerms">
            <summary>
            Identifies a phrase that all documents in the search results must contain.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.ExcludeTerms">
            <summary>
            Identifies a word or phrase that should not appear in any documents in the search results.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.LinkSite">
            <summary>
            Specifies that all results should contain a link to a specific URL.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.OrTerms">
            <summary>
            Provides additional search terms to check for in a document, 
            where each document in the search results must contain at least one of the additional search terms. 
            You can also use the Boolean OR query term for this type of query.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.RelatedSite">
            <summary>
            Specifies that all search results should be pages that are related to the specified URL. 
            The parameter value should be a URL.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.DateRestrict">
            <summary>
            Restricts results to URLs based on date. 
            Supported values include:
            - d[number]: requests results from the specified number of past days. 
            - w[number]: requests results from the specified number of past weeks. 
            - m[number]: requests results from the specified number of past months. 
            - y[number]: requests results from the specified number of past years.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.LowRange">
            <summary>
            Specifies the starting value for a search range. 
            Use cse:lowRange and cse:highrange to append an inclusive search range of lowRange...highRange to the query.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.HighRange">
            <summary>
            Specifies the ending value for a search range. 
            Use cse:lowRange and cse:highrange to append an inclusive search range of lowRange...highRange to the query.
            </summary>'
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.FileTypes">
            <summary>
            Restricts results to files of a specified extension.
            A list of file types indexable by Google can be found in Search Console Help Center. https://support.google.com/webmasters/answer/35287?hl=en
            Additional filetypes may be added in the future. An up-to-date list can always be found in Google's file type FAQ.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.Rights">
            <summary>
            Rights - Filters based on licensing.
            Supported values include: 
            - cc_publicdomain 
            - cc_attribute
            - cc_sharealike
            - cc_noncommercial
            - cc_nonderived
            - and combinations of these.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.SearchType">
            <summary>
            Allowed values are web or image. If unspecified, results are limited to webpages.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.ImageSize">
            <summary>
            Restricts results to images of a specified size. 
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.ImageType">
            <summary>
            Restricts results to images of a specified type. 
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.ImageColorType">
            <summary>
            Restricts results to images of a specified color type. 
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.QueryInfo.ImageDominantColor">
            <summary>
            Restricts results to images with a specific dominant color.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.SearchImageOptions">
            <summary>
            Search Image Options.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchImageOptions.ImageType">
            <summary>
            Type - Returns images of a type. 
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchImageOptions.ImageSize">
            <summary>
            Size - Returns images of a specified size.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchImageOptions.ImageColorType">
            <summary>
            ColorType - Returns black and white, grayscale, or color images: mono, gray, and color.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchImageOptions.ImageDominantColor">
            <summary>
            DominantColor - Returns images of a specific dominant color. 
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.SearchInfo">
            <summary>
            Encapsulates all information about the search.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchInfo.SearchTime">
            <summary>
            The time taken for the server to return search results.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchInfo.SearchTimeFormatted">
            <summary>
            The time taken for the server to return search results, formatted according to locale style.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchInfo.TotalResults">
            <summary>
            The total number of search results returned by the query.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchInfo.TotalResultsFormatted">
            <summary>
            The total number of search results, formatted according to locale style.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.SearchOptions">
            <summary>
            Define properties of your search, like the search expression, number of results, language etc.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.DisableCnTwTranslation">
            <summary>
            Enables or disables the Simplified and Traditional Chinese Search feature.
            The default value for this parameter is true, meaning that the feature is enabled.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.CountryRestrict">
            <summary>
            Restricts search results to documents originating in a particular country. 
            You may use Boolean operators in the cr parameter's value.
            Google Search determines the country of a document by analyzing:
            the top-level domain(TLD) of the document's URL  the geographic location of the Web server's IP address
            See the Country Parameter Values page for a list of valid values for this parameter.
            https://developers.google.com/custom-search/docs/xml_results_appendices#countryCollections
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.DateRestrict">
            <summary>
            Restricts results to URLs based on date. 
            Supported values include:d[number]: requests results from the specified number of past days. w[number]: requests results from the specified number 
            of past weeks. m[number]: requests results from the specified number of past months. y[number]: requests results from the specified number of past years.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.ExactTerms">
            <summary>
            ExactTerms - Identifies a phrase that all documents in the search results must contain.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.ExcludeTerms">
            <summary>
            ExcludeTerms - Identifies a word or phrase that should not appear in any documents in the search results.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.FileTypes">
            <summary>
            FileType - Restricts results to files of a specified extension.
            A list of file types indexable by Google can be found in Search Console Help Center. https://support.google.com/webmasters/answer/35287?hl=en
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.Filter">
            <summary>
            Filter - Controls turning on or off the duplicate content filter.
            See Automatic Filtering for more information about Google's search results filters. 
            Note that host crowding filtering applies only to multi-site searches.
            By default, Google applies filtering to all search results to improve the quality of those results.
            https://developers.google.com/custom-search/docs/xml_results#automaticFiltering.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.GeoLocation">
            <summary>
            Geolocation of end user.
            The geolocation parameter value is a two-letter country code.The gl parameter boosts search results whose country of origin matches the parameter value.
            See the Country Codes page for a list of valid values. https://developers.google.com/custom-search/docs/xml_results#countryCodes
            Specifying a geolocation parameter value should lead to more relevant results.
            This is particularly true for international customers and, even more specifically, for customers in English- speaking countries other than the United States.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.Googlehost">
            <summary>
            Googlehost - The local Google domain (for example, google.com, google.de, or google.fr) to use to perform the search.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.HighRange">
            <summary>
            HighRange - Specifies the ending value for a search range.
            Use lowRange and highRange to append an inclusive search range of lowRange...highRange to the query.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.InterfaceLanguage">
            <summary>
            Language - Sets the user interface language. 
            Explicitly setting this parameter improves the performance and the quality of your search results.
            See the Interface Languages section of Internationalizing Queries and Results Presentation for more information, 
            and Supported Interface Languages for a list of supported languages.
            https://developers.google.com/custom-search/docs/xml_results#interfaceLanguages
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.AndTerms">
            <summary>
            AndTerms - string Appends the specified query terms to the query, as if they were combined with a logical AND operator.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.LinkSite">
            <summary>
            LinkSite - Specifies that all search results should contain a link to a particular URL.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.LowRange">
            <summary>
            LowRange - Specifies the starting value for a search range.
            Use lowRange and highRange to append an inclusive search range of lowRange...highRange to the query.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.Number">
            <summary>
            Number of search results to return.
            Valid values are integers between 1 and 10, inclusive.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.OrTerms">
            <summary>
            OrTerms - Provides additional search terms to check for in a document, 
            where each document in the search results must contain at least one of the additional search terms.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.RelatedSite">
            <summary>
            RelatedSite - Specifies that all search results should be pages that are related to the specified URL.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.Rights">
            <summary>
            Rights - Filters based on licensing.
            Supported values include: cc_publicdomain, cc_attribute, cc_sharealike, cc_noncommercial, cc_nonderived, and combinations of these.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.SafetyLevel">
             <summary>
             SafetyLevel - Search safety level.
             Acceptable values are:
             - "off": Disables SafeSearch filtering. (default)
            -  "medium": Enables moderate SafeSearch filtering.
             - "high": Enables highest level of SafeSearch filtering.
             </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.SiteSearch">
            <summary>
            SiteSearch - Specifies all search results should be pages either included or excluded, from a given site.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.SortExpression">
            <summary>
            The sort expression to apply to the results.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SearchOptions.StartIndex">
            <summary>
            Start - The index of the first result to return.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.SiteSearch">
            <summary>
            Site Search.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SiteSearch.Site">
            <summary>
            Site - Specifies all search results should be pages from a given site.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SiteSearch.Filter">
            <summary>
            Filter - Controls whether to include or exclude results from the site named in the siteSearch parameter.
            Acceptable values are:
            - "e": exclude
            - "i": include
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.SortExpression">
            <summary>
            The sort expression to apply to the results.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SortExpression.By">
            <summary>
            The sort expression to apply to the results.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SortExpression.Order">
            <summary>
            The direction to sort the search results, either Ascending or Descending.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.SortExpression.DefaultValue">
            <summary>
            The default value of the expression, if no field is present and cannot be calculated for a document. 
            A text value must be specified for text sorts. A numeric value must be specified for numeric sorts.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.SortExpression.ToString">
            <summary>
            Returns the <see cref="T:GoogleApi.Entities.Search.Common.SortExpression"/> to <see cref="T:System.String"/>.
            </summary>
            <returns>The <see cref="T:GoogleApi.Entities.Search.Common.SortExpression"/> object as <see cref="T:System.String"/>.</returns>
        </member>
        <member name="M:GoogleApi.Entities.Search.Common.SortExpression.FromString(System.String)">
            <summary>
            Converts a <see cref="T:System.String"/> into a <see cref="T:GoogleApi.Entities.Search.Common.SortExpression"/>.
            </summary>
            <param name="string">The <see cref="T:System.String"/> formatted as a valid <see cref="T:GoogleApi.Entities.Search.Common.SortExpression"/>.</param>
            <returns>The converted <see cref="T:GoogleApi.Entities.Search.Common.SortExpression"/></returns>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Spelling">
            <summary>
            Encapsulates a corrected query.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Spelling.CorrectedQuery">
            <summary>
            The corrected query.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Spelling.HtmlCorrectedQuery">
            <summary>
            The corrected query, formatted in HTML.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Common.Url">
            <summary>
            The OpenSearch URL element that defines the template for the API.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Url.Type">
            <summary>
            The MIME type of the OpenSearch URL template for the Custom Search API.	
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Common.Url.Template">
            <summary>
            The actual OpenSearch template for this API.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Image.Request.ImageSearchRequest">
            <summary>
            Image Search Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Image.Request.ImageSearchRequest.ImageOptions">
            <summary>
            Search Image Options.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Image.Request.ImageSearchRequest.#ctor">
            <summary>
            Default Constructor.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Image.Request.ImageSearchRequest.GetQueryStringParameters">
            <summary>
            See <see cref="M:GoogleApi.Entities.Search.Web.Request.WebSearchRequest.GetQueryStringParameters"/>.
            </summary>
            <returns>The <see cref="T:System.Collections.Generic.IList`1"/> collection.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.BaseVideoSearchRequest">
            <summary>
            Base Video Search Request (abstract).
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchRequest.BaseUrl">
            <summary>
            BaseUrl property overriden.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchRequest.Part">
            <summary>
            The part parameter specifies a comma-separated list of one or more search resource properties that the API response will include.
            Cannot be set. Currently, the implementation only support response part 'snippet'.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchRequest.Location">
            <summary>
            The location parameter, in conjunction with the locationRadius parameter, defines a circular geographic area and also restricts a search to videos that specify,
            in their metadata, a geographic location that falls within that area.
            The parameter value is a string that specifies latitude/longitude coordinates e.g. (37.42307,-122.08427).
            The location parameter value identifies the point at the center of the area.
            The locationRadius parameter specifies the maximum distance that the location associated with a video can be from that point for
            the video to still be included in the search results.  The API returns an error if your request specifies a value for the location parameter but does not
            also specify a value for the locationRadius parameter.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchRequest.LocationRadiusInMeters">
            <summary>
            The locationRadius parameter, in conjunction with the location parameter, defines a circular geographic area.
            The parameter value must be a floating point number followed by a measurement unit.Valid measurement units are m, km, ft, and mi. For example,
            valid parameter values include 1500m, 5km, 10000ft, and 0.75mi.
            The API does not support locationRadius parameter values larger than 1000 kilometers.
            Note: See the definition of the location parameter for more information.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchRequest.MaxResults">
            <summary>
            The maxResults parameter specifies the maximum number of items that should be returned in the result set.
            Acceptable values are 0 to 50, inclusive.
            The default value is 5.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchRequest.Order">
            <summary>
            The order parameter specifies the method that will be used to order resources in the API response.
            The default value is relevance.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchRequest.PageToken">
            <summary>
            The pageToken parameter identifies a specific page in the result set that should be returned.
            In an API response, the nextPageToken and prevPageToken properties identify other pages that could be retrieved.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchRequest.PublishedAfter">
            <summary>
            The publishedAfter parameter indicates that the API response should only contain resources created at or after the specified time.
            The value is an RFC 3339 formatted date-time value(1970-01-01T00:00:00Z).
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchRequest.PublishedBefore">
            <summary>
            The publishedBefore parameter indicates that the API response should only contain resources created before or at the specified time.
            The value is an RFC 3339 formatted date-time value(1970-01-01T00:00:00Z).
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchRequest.Region">
            <summary>
            The regionCode parameter instructs the API to return search results for videos that can be viewed in the specified country.
            The parameter value is an ISO 3166-1 alpha-2 country code.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchRequest.RelevanceLanguage">
            <summary>
            The relevanceLanguage parameter instructs the API to return search results that are most relevant to the specified language.
            The parameter value is typically an ISO 639-1 two-letter language code.
            However, you should use the values zh-Hans for simplified Chinese and zh-Hant for traditional
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchRequest.SafeSearch">
            <summary>
            The safeSearch parameter indicates whether the search results should include restricted content
            as well as standard content.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchRequest.TopicId">
            <summary>
            The topicId parameter indicates that the API response should only
            contain resources associated with the specified topic.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Video.BaseVideoSearchRequest.GetQueryStringParameters">
            <summary>
            See <see cref="M:GoogleApi.Entities.BaseRequest.GetQueryStringParameters"/>.
            </summary>
            <returns>The <see cref="T:System.Collections.Generic.IList`1"/> collection.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.BaseVideoSearchResponse">
            <summary>
            Base Video Search Response (abstract).
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchResponse.Kind">
            <summary>
            Kind.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchResponse.ETag">
            <summary>
            ETag.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchResponse.PageToken">
            <summary>
            Page Token.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchResponse.Region">
            <summary>
            Region Code.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchResponse.PageInfo">
            <summary>
            Page Info.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.BaseVideoSearchResponse.Items">
            <summary>
            Items.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Channels.Request.ChannelSearchRequest">
            <summary>
            Channel Search Request.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Channels.Response.ChannelSearchResponse">
            <summary>
            Channel Search Response.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Common.Enums.ChannelType">
            <summary>
            Channel Type.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.ChannelType.Any">
            <summary>
            Any.
            Return all channels.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.ChannelType.Show">
            <summary>
            Show.
            Only retrieve shows.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Common.Enums.Country">
            <summary>
            Country.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Afghanistan">
            <summary>
            Afghanistan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Albania">
            <summary>
            Albania
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Algeria">
            <summary>
            Algeria
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.AmericanSamoa">
            <summary>
            American Samoa
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Andorra">
            <summary>
            Andorra
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Angola">
            <summary>
            Angola
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Anguilla">
            <summary>
            Anguilla
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Antarctica">
            <summary>
            Antarctica
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.AntiguaAndBarbuda">
            <summary>
            Antigua and Barbuda
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Argentina">
            <summary>
            Argentina
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Armenia">
            <summary>
            Armenia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Aruba">
            <summary>
            Aruba
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Australia">
            <summary>
            Australia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Austria">
            <summary>
            Austria
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Azerbaijan">
            <summary>
            Azerbaijan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Bahamas">
            <summary>
            Bahamas
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Bahrain">
            <summary>
            Bahrain
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Bangladesh">
            <summary>
            Bangladesh
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Barbados">
            <summary>
            Barbados
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Belarus">
            <summary>
            Belarus
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Belgium">
            <summary>
            Belgium
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Belize">
            <summary>
            Belize
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Benin">
            <summary>
            Benin
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Bermuda">
            <summary>
            Bermuda
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Bhutan">
            <summary>
            Bhutan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Bolivia">
            <summary>
            Bolivia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.BosniaAndHerzegovina">
            <summary>
            Bosnia and Herzegovina
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Botswana">
            <summary>
            Botswana
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.BouvetIsland">
            <summary>
            Bouvet Island
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Brazil">
            <summary>
            Brazil
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.BritishIndianOceanTerritory">
            <summary>
            British Indian Ocean Territory
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.BruneiDarussalam">
            <summary>
            Brunei Darussalam
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Bulgaria">
            <summary>
            Bulgaria
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.BurkinaFaso">
            <summary>
            Burkina Faso
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Burundi">
            <summary>
            Burundi
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Cambodia">
            <summary>
            Cambodia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Cameroon">
            <summary>
            Cameroon
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Canada">
            <summary>
            Canada
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.CapeVerde">
            <summary>
            Cape Verde
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.CaymanIslands">
            <summary>
            Cayman Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.CentralAfricanRepublic">
            <summary>
            Central African Republic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Chad">
            <summary>
            Chad
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Chile">
            <summary>
            Chile
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.China">
            <summary>
            China
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.ChristmasIsland">
            <summary>
            Christmas Island
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.CocosIslands">
            <summary>
            Cocos (Keeling) Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Colombia">
            <summary>
            Colombia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Comoros">
            <summary>
            Comoros
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Congo">
            <summary>
            Congo
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.TheDemocraticRepublicOfCongo">
            <summary>
            Congo, the Democratic Republic of the
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.CookIslands">
            <summary>
            Cook Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.CostaRica">
            <summary>
            Costa Rica
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.CoteDivoire">
            <summary>
            Cote D'ivoire
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Croatia">
            <summary>
            Croatia (Hrvatska)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Cuba">
            <summary>
            Cuba
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Cyprus">
            <summary>
            Cyprus
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.CzechRepublic">
            <summary>
            Czech Republic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Denmark">
            <summary>
            Denmark
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Djibouti">
            <summary>
            Djibouti
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Dominica">
            <summary>
            Dominica
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.DominicanRepublic">
            <summary>
            Dominican Republic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.EastTimor">
            <summary>
            East Timor
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Ecuador">
            <summary>
            Ecuador
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Egypt">
            <summary>
            Egypt
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.ElSalvador">
            <summary>
            El Salvador
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.EquatorialGuinea">
            <summary>
            Equatorial Guinea
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Eritrea">
            <summary>
            Eritrea
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Estonia">
            <summary>
            Estonia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Ethiopia">
            <summary>
            Ethiopia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.EuropeanUnion">
            <summary>
            European Union
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.FalklandIslAndsMalvinas">
            <summary>
            Falkland Islands (Malvinas)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.FaroeIslands">
            <summary>
            Faroe Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Fiji">
            <summary>
            Fiji
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Finland">
            <summary>
            Finland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.France">
            <summary>
            France
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.FranceMetropolitan">
            <summary>
            France, Metropolitan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.FrenchGuiana">
            <summary>
            French Guiana
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.FrenchPolynesia">
            <summary>
            French Polynesia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.FrenchSouthernTerritories">
            <summary>
            French Southern Territories
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Gabon">
            <summary>
            Gabon
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Gambia">
            <summary>
            Gambia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Georgia">
            <summary>
            Georgia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Germany">
            <summary>
            Germany
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Ghana">
            <summary>
            Ghana
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Gibraltar">
            <summary>
            Gibraltar
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Greece">
            <summary>
            Greece
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Greenland">
            <summary>
            Greenland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Grenada">
            <summary>
            Grenada
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Guadeloupe">
            <summary>
            Guadeloupe
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Guam">
            <summary>
            Guam
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Guatemala">
            <summary>
            Guatemala
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Guinea">
            <summary>
            Guinea
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.GuineaBissau">
            <summary>
            Guinea-Bissau
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Guyana">
            <summary>
            Guyana
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Haiti">
            <summary>
            Haiti
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.HeardIslandAndMcdonaldIslands">
            <summary>
            Heard Island and Mcdonald Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.VaticanCityState">
            <summary>
            Holy See (Vatican City State)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Honduras">
            <summary>
            Honduras
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.HongKong">
            <summary>
            Hong Kong
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Hungary">
            <summary>
            Hungary
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Iceland">
            <summary>
            Iceland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.India">
            <summary>
            India
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Indonesia">
            <summary>
            Indonesia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Iran">
            <summary>
            Iran, Islamic Republic of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Iraq">
            <summary>
            Iraq
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Ireland">
            <summary>
            Ireland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Israel">
            <summary>
            Israel
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Italy">
            <summary>
            Italy
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Jamaica">
            <summary>
            Jamaica
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Japan">
            <summary>
            Japan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Jordan">
            <summary>
            Jordan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Kazakhstan">
            <summary>
            Kazakhstan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Kenya">
            <summary>
            Kenya
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Kiribati">
            <summary>
            Kiribati
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.DemocraticPeoplesRepublicOfKorea">
            <summary>
            Korea, Democratic People's Republic of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.RepublicOfKorea">
            <summary>
            Korea, Republic of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Kuwait">
            <summary>
            Kuwait
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Kyrgyzstan">
            <summary>
            Kyrgyzstan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.LaoPeoplesDemocraticRepublic">
            <summary>
            Lao People's Democratic Republic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Latvia">
            <summary>
            Latvia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Lebanon">
            <summary>
            Lebanon
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Lesotho">
            <summary>
            Lesotho
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Liberia">
            <summary>
            Liberia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.LibyanArabJamahiriya">
            <summary>
            Libyan Arab Jamahiriya
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Liechtenstein">
            <summary>
            Liechtenstein
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Lithuania">
            <summary>
            Lithuania
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Luxembourg">
            <summary>
            Luxembourg
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Macao">
            <summary>
            Macao
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Macedonia">
            <summary>
            Macedonia, the Former Yugosalv Republic of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Madagascar">
            <summary>
            Madagascar
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Malawi">
            <summary>
            Malawi
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Malaysia">
            <summary>
            Malaysia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Maldives">
            <summary>
            Maldives
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Mali">
            <summary>
            Mali
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Malta">
            <summary>
            Malta
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.MarshallIslands">
            <summary>
            Marshall Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Martinique">
            <summary>
            Martinique
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Mauritania">
            <summary>
            Mauritania
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Mauritius">
            <summary>
            Mauritius
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Mayotte">
            <summary>
            Mayotte
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Mexico">
            <summary>
            Mexico
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Micronesia">
            <summary>
            Micronesia, Federated States of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Moldova">
            <summary>
            Moldova, Republic of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Monaco">
            <summary>
            Monaco
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Mongolia">
            <summary>
            Mongolia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Montserrat">
            <summary>
            Montserrat
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Morocco">
            <summary>
            Morocco
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Mozambique">
            <summary>
            Mozambique
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Myanmar">
            <summary>
            Myanmar
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Namibia">
            <summary>
            Namibia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Nauru">
            <summary>
            Nauru
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Nepal">
            <summary>
            Nepal
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Netherlands">
            <summary>
            Netherlands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.NetherlandsAntilles">
            <summary>
            Netherlands Antilles
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.NewCaledonia">
            <summary>
            New Caledonia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.NewZealand">
            <summary>
            New Zealand
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Nicaragua">
            <summary>
            Nicaragua
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Niger">
            <summary>
            Niger
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Nigeria">
            <summary>
            Nigeria
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Niue">
            <summary>
            Niue
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.NorfolkIsland">
            <summary>
            Norfolk Island
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.NorthernMarianaIslands">
            <summary>
            Northern Mariana Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Norway">
            <summary>
            Norway
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Oman">
            <summary>
            Oman
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Pakistan">
            <summary>
            Pakistan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Palau">
            <summary>
            Palau
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.PalestinianTerritory">
            <summary>
            Palestinian Territory
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Panama">
            <summary>
            Panama
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.PapuaNewGuinea">
            <summary>
            Papua New Guinea
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Paraguay">
            <summary>
            Paraguay
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Peru">
            <summary>
            Peru
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Philippines">
            <summary>
            Philippines
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Pitcairn">
            <summary>
            Pitcairn
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Poland">
            <summary>
            Poland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Portugal">
            <summary>
            Portugal
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.PuertoRico">
            <summary>
            Puerto Rico
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Qatar">
            <summary>
            Qatar
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Reunion">
            <summary>
            Reunion
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Romania">
            <summary>
            Romania
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.RussianFederation">
            <summary>
            Russian Federation
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Rwanda">
            <summary>
            Rwanda
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.SaintHelena">
            <summary>
            Saint Helena
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.SaintKittsAndNevis">
            <summary>
            Saint Kitts and Nevis
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.SaintLucia">
            <summary>
            Saint Lucia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.SaintPierreAndMiquelon">
            <summary>
            Saint Pierre and Miquelon
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.SaintVincentAndtheGrenadines">
            <summary>
            Saint Vincent and the Grenadines
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Samoa">
            <summary>
            Samoa
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.SanMarino">
            <summary>
            San Marino
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.SaoTomeAndPrincipe">
            <summary>
            Sao Tome and Principe
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.SaudiArabia">
            <summary>
            Saudi Arabia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Senegal">
            <summary>
            Senegal
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.SerbiaAndMontenegro">
            <summary>
            Serbia and Montenegro
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Seychelles">
            <summary>
            Seychelles
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.SierraLeone">
            <summary>
            Sierra Leone
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Singapore">
            <summary>
            Singapore
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Slovakia">
            <summary>
            Slovakia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Slovenia">
            <summary>
            Slovenia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.SolomonIslands">
            <summary>
            Solomon Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Somalia">
            <summary>
            Somalia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.SouthAfrica">
            <summary>
            South Africa
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.SouthGeorgiaAndTheSouthSAndwichIslands">
            <summary>
            South Georgia and the South Sandwich Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Spain">
            <summary>
            Spain
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.SriLanka">
            <summary>
            Sri Lanka
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Sudan">
            <summary>
            Sudan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Suriname">
            <summary>
            Suriname
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.SvalbardAndJanMayen">
            <summary>
            Svalbard and Jan Mayen
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Swaziland">
            <summary>
            Swaziland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Sweden">
            <summary>
            Sweden
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Switzerland">
            <summary>
            Switzerland
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.SyrianArabRepublic">
            <summary>
            Syrian Arab Republic
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Taiwan">
            <summary>
            Taiwan, Province of China
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Tajikistan">
            <summary>
            Tajikistan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Tanzania">
            <summary>
            Tanzania, United Republic of
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Thailand">
            <summary>
            Thailand
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Togo">
            <summary>
            Togo
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Tokelau">
            <summary>
            Tokelau
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Tonga">
            <summary>
            Tonga
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.TrinidadAndTobago">
            <summary>
            Trinidad and Tobago
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Tunisia">
            <summary>
            Tunisia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Turkey">
            <summary>
            Turkey
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Turkmenistan">
            <summary>
            Turkmenistan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.TurksAndCaicosIslands">
            <summary>
            Turks and Caicos Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Tuvalu">
            <summary>
            Tuvalu
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Uganda">
            <summary>
            Uganda
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Ukraine">
            <summary>
            Ukraine
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.UnitedArabEmirates">
            <summary>
            United Arab Emirates
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.UnitedKingdom">
            <summary>
            United Kingdom
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.UnitedStates">
            <summary>
            United States
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.UnitedStatesMinorOutlyingIslands">
            <summary>
            United States Minor Outlying Islands
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Uruguay">
            <summary>
            Uruguay
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Uzbekistan">
            <summary>
            Uzbekistan
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Vanuatu">
            <summary>
            Vanuatu
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Venezuela">
            <summary>
            Venezuela
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Vietnam">
            <summary>
            Vietnam
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.VirginIslandsBritish">
            <summary>
            Virgin Islands, British
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.VirginIslandsUs">
            <summary>
            Virgin Islands, U.S.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.WallisandFutuna">
            <summary>
            Wallis and Futuna
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.WesternSahara">
            <summary>
            Western Sahara
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Yemen">
            <summary>
            Yemen
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Yugoslavia">
            <summary>
            Yugoslavia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Zambia">
            <summary>
            Zambia
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Country.Zimbabwe">
            <summary>
            Zimbabwe
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Common.Enums.EventType">
            <summary>
            Event Type.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.EventType.Completed">
            <summary>
            Completed.
            Only include completed broadcasts.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.EventType.Live">
            <summary>
            Live.
            Only include active broadcasts.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.EventType.Upcoming">
            <summary>
            Upcoming.
            Only include upcoming broadcasts.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Common.Enums.Extensions.CountryExtension">
            <summary>
            Country Extension methods.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Video.Common.Enums.Extensions.CountryExtension.ToCode(GoogleApi.Entities.Search.Video.Common.Enums.Country)">
            <summary>
            Returns the Country code.
            </summary>
            <param name="country">The <see cref="T:GoogleApi.Entities.Search.Video.Common.Enums.Country"/>.</param>
            <returns>The country code.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Common.Enums.Order">
            <summary>
            Order.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Order.Date">
            <summary>
            Resources are sorted in reverse chronological order based on the date they were created.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Order.Rating">
            <summary>
            Resources are sorted from highest to lowest rating.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Order.Relevance">
            <summary>
            Resources are sorted based on their relevance to the search query.This is the default value for this parameter.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Order.Title">
            <summary>
            Resources are sorted alphabetically by title..
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Order.VideoCount">
            <summary>
            Channels are sorted in descending order of their number of uploaded videos.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.Order.ViewCount">
            <summary>
            Resources are sorted from highest to lowest number of views. For live broadcasts, videos are sorted by number of concurrent viewers while the broadcasts are ongoing.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Common.Enums.PartType">
            <summary>
            Part Type.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.PartType.Snippet">
            <summary>
            Snippet.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.PartType.ContentDetails">
            <summary>
            Content Details.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.PartType.FileDetails">
            <summary>
            File Details.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.PartType.Player">
            <summary>
            Player.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.PartType.ProcessingDetails">
            <summary>
            Processing Details.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.PartType.RecordingDetails">
            <summary>
            Recording Details.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.PartType.Statistics">
            <summary>
            Statistics.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.PartType.Status">
            <summary>
            Status.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.PartType.Suggestions">
            <summary>
            Suggestions.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.PartType.TopicDetails">
            <summary>
            Topic Details.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Common.Enums.SafeSearch">
            <summary>
            Safe Search.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.SafeSearch.None">
            <summary>
            None.
            YouTube will not filter the search result set.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.SafeSearch.Moderate">
            <summary>
            Moderate.
            YouTube will filter some content from search results and, at the least, will filter content that is restricted in your locale.
            Based on their content, search results could be removed from search results or demoted in search results. This is the default parameter value.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Common.Enums.SafeSearch.Strict">
            <summary>
            YouTube will try to exclude all restricted content from the search result set.
            Based on their content, search results could be removed from search results or demoted in search results.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Common.Id">
            <summary>
            Id.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Id.Kind">
            <summary>
            Kind.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Id.VideoId">
            <summary>
            Video Id.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Common.Item">
            <summary>
            Item.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Item.Id">
            <summary>
            Video Id.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Item.Kind">
            <summary>
            Kind.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Item.ETag">
            <summary>
            ETag.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Item.Snippet">
            <summary>
            Snippet.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Common.PageInfo">
            <summary>
            Page Info.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.PageInfo.TotalResults">
            <summary>
            Total Results.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.PageInfo.ResultsPerPage">
            <summary>
            Results Per Page.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Common.Snippet">
            <summary>
            
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Snippet.Title">
            <summary>
            Title.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Snippet.Description">
            <summary>
            Description.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Snippet.ChannelId">
            <summary>
            Channel Id.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Snippet.ChannelTitle">
            <summary>
            Channel Title.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Snippet.LiveBroadcastContent">
            <summary>
            Live Broadcast Content.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Snippet.CategoryId">
            <summary>
            Category Id.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Snippet.PublishedAt">
            <summary>
            Published At.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Snippet.Thumbnails">
            <summary>
            Thumbnails.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Common.Thumbnail">
            <summary>
            Thumbnail.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Thumbnail.Width">
            <summary>
            Width.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Thumbnail.Height">
            <summary>
            Height.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Thumbnail.Url">
            <summary>
            Url.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Common.Thumbnails">
            <summary>
            Thumbnails.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Thumbnails.Default">
            <summary>
            Default.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Thumbnails.Medium">
            <summary>
            Medium.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Common.Thumbnails.High">
            <summary>
            High.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Playlists.Request.PlaylistSearchRequest">
            <summary>
            Playlist Search Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Playlists.Request.PlaylistSearchRequest.ChannelId">
            <summary>
            The channelId parameter indicates that the API response should only contain resources created by the channel.
            Note: Search results are constrained to a maximum of 500 videos if your request specifies a value for the channelId parameter and
            sets the type parameter value to video, but it does not also set one of the forContentOwner, forDeveloper, or forMine filters.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Playlists.Request.PlaylistSearchRequest.ChannelType">
            <summary>
            The channelType parameter lets you restrict a search to a particular type of channel.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Playlists.Response.PlaylistSearchResponse">
            <summary>
            Playlist Search Response.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoCaptionType">
            <summary>
            Video Caption Type.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoCaptionType.Any">
            <summary>
            Any.
            Do not filter results based on caption availability.
            This is the default value.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoCaptionType.ClosedCaption">
            <summary>
            Closed Caption.
            Only include videos that have captions.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoCaptionType.None">
            <summary>
            None.
            Only include videos that do not have captions.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoDefinitionType">
            <summary>
            Video Definition Type.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoDefinitionType.Any">
            <summary>
            Any.
            Return all videos, regardless of their resolution.
            This is the default value.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoDefinitionType.High">
            <summary>
            High.
            Only retrieve HD videos.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoDefinitionType.Standard">
            <summary>
            Standard.
            Only retrieve videos in standard definition.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoDimensionType">
            <summary>
            Video Dimension Type.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoDimensionType.Any">
            <summary>
            Any.
            Include both 3D and non-3D videos in returned results.
            This is the default value.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoDimensionType.TwoDimensional">
            <summary>
            Two Dimensional (2D).
            Restrict search results to exclude 3D videos.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoDimensionType.ThreeDimensional">
            <summary>
            Three Dimensional (3D).
            Restrict search results to only include 3D videos.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoDurationType">
            <summary>
            Video Duration Type.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoDurationType.Any">
            <summary>
            Any.
            Do not filter video search results based on their duration.
            This is the default value.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoDurationType.Short">
            <summary>
            Short.
            Only include videos that are less than four minutes long.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoDurationType.Medium">
            <summary>
            Medium.
            Only include videos that are between four and 20 minutes long (inclusive).
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoDurationType.Long">
            <summary>
            Long.
            Only include videos longer than 20 minutes.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoEmbeddableType">
            <summary>
            Video Embeddable Type.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoEmbeddableType.Any">
            <summary>
            Any.
            Return all videos, syndicated or not.
            This is the default value.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoEmbeddableType.True">
            <summary>
            True.
            Only retrieve syndicated videos.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoLicenseType">
            <summary>
            Video License Type.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoLicenseType.Any">
            <summary>
            Any.
            Return all videos, regardless of which license they have, that match the query parameters.
            This is the default value.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoLicenseType.CreativeCommon">
            <summary>
            Creative Common.
            Only return videos that have a Creative Commons license.Users can reuse videos with this license in other videos that they create.Learn more.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoLicenseType.YouTube">
            <summary>
            YouTube.
            Only return videos that have the standard YouTube license.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoSyndicatedType">
            <summary>
            Video Syndicated Type.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoSyndicatedType.Any">
            <summary>
            Any.
            Return all videos, embeddable or not.
            This is the default value.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoSyndicatedType.True">
            <summary>
            True.
            Only retrieve embeddable videos.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoType">
            <summary>
            Video Type.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoType.Any">
            <summary>
            Any.
            Return all videos.
            This is the default value.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoType.Episode">
            <summary>
            Episode.
            Only retrieve episodes of shows.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Search.Video.Videos.Request.Enums.VideoType.Movie">
            <summary>
            Episode.
            Only retrieve movies.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Videos.Request.VideoOptions">
            <summary>
            Video Options.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Videos.Request.VideoOptions.VideoCategoryId">
            <summary>
            The videoCategoryId parameter filters video search results based on their category.
            If you specify a value for this parameter, you must also set the type parameter's value to video.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Videos.Request.VideoOptions.VideoCaption">
            <summary>
            The videoCaption parameter indicates whether the API should filter video search results based on whether they have captions.
            If you specify a value for this parameter, you must also set the type parameter's value to video.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Videos.Request.VideoOptions.VideoDefinition">
            <summary>
            The videoDefinition parameter lets you restrict a search to only include either high definition (HD) or standard definition (SD) videos.
            HD videos are available for playback in at least 720p, though higher resolutions, like 1080p, might also be available.
            If you specify a value for this parameter, you must also set the type parameter's value to video.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Videos.Request.VideoOptions.VideoDimension">
            <summary>
            The videoDimension parameter lets you restrict a search to only retrieve 2D or 3D videos.
            If you specify a value for this parameter, you must also set the type parameter's value to video.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Videos.Request.VideoOptions.VideoDuration">
            <summary>
            The videoDuration parameter filters video search results based on their duration.
            If you specify a value for this parameter, you must also set the type parameter's value to video.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Videos.Request.VideoOptions.VideoEmbeddable">
            <summary>
            The videoEmbeddable parameter lets you to restrict a search to only videos that can be embedded into a webpage.
            If you specify a value for this parameter, you must also set the type parameter's value to video.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Videos.Request.VideoOptions.VideoLicense">
            <summary>
            The videoLicense parameter filters search results to only include videos with a particular license.
            YouTube lets video uploaders choose to attach either the Creative Commons license or the standard YouTube license to each of their videos.
            If you specify a value for this parameter, you must also set the type parameter's value to video.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Videos.Request.VideoOptions.VideoSyndicated">
            <summary>
            The videoSyndicated parameter lets you to restrict a search to only videos that can be played outside youtube.com.
            If you specify a value for this parameter, you must also set the type parameter's value to video.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Videos.Request.VideoOptions.VideoType">
            <summary>
            The videoType parameter lets you restrict a search to a particular type of videos.
            If you specify a value for this parameter, you must also set the type parameter's value to video.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Videos.Request.VideoSearchRequest">
            <summary>
            Video Search Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Videos.Request.VideoSearchRequest.ChannelId">
            <summary>
            The channelId parameter indicates that the API response should only contain resources created by the channel.
            Note: Search results are constrained to a maximum of 500 videos if your request specifies a value for the channelId parameter and
            sets the type parameter value to video, but it does not also set one of the forContentOwner, forDeveloper, or forMine filters.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Videos.Request.VideoSearchRequest.RelatedToVideoId">
            <summary>
            The relatedToVideoId parameter retrieves a list of videos that are related to the video that the parameter value identifies.
            The parameter value must be set to a YouTube video ID and, if you are using this parameter, the type parameter must be set to video.
            NOTE, that if the relatedToVideoId parameter is set, the only other supported parameters are
            - part,
            - maxResults,
            - pageToken,
            - regionCode,
            - relevanceLanguage,
            - safeSearch,
            - type (which must be set to video),
            - and fields.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Videos.Request.VideoSearchRequest.EventType">
            <summary>
            The eventType parameter restricts a search to broadcast events.
            If you specify a value for this parameter, you must also set the type parameter's value to video.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Videos.Request.VideoSearchRequest.ChannelType">
            <summary>
            The channelType parameter lets you restrict a search to a particular type of channel.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Video.Videos.Request.VideoSearchRequest.Options">
            <summary>
            Options.
            Additional video options.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Video.Videos.Request.VideoSearchRequest.#ctor">
            <summary>
            Default Constructor.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Video.Videos.Request.VideoSearchRequest.GetQueryStringParameters">
            <summary>
            See <see cref="M:GoogleApi.Entities.BaseRequest.GetQueryStringParameters"/>.
            </summary>
            <returns>The <see cref="T:System.Collections.Generic.IList`1"/> collection.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Search.Video.Videos.Response.VideoSearchResponse">
            <summary>
            Video Search Response.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Search.Web.Request.WebSearchRequest">
            <summary>
            Web Search Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Web.Request.WebSearchRequest.BaseUrl">
            <summary>
            BaseUrl property overriden.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Web.Request.WebSearchRequest.SearchEngineId">
            <summary>
            Required. 
            Search engine created for a site with the Google Control Panel 
            To create a Google Custom Search engine that searches the entire web:
            1. From the Google Custom Search homepage (http://www.google.com/cse), click Create a Custom Search Engine.
            2. Type a name and description for your search engine.
            3. Under Define your search engine, in the Sites to Search box, enter at least one valid URL (For now, just put www.anyurl.com to get past this screen.More on this later).
            4. Select the CSE edition you want and accept the Terms of Service, then click Next.Select the layout option you want, and then click Next.
            5. Click any of the links under the Next steps section to navigate to your Control panel.
            6. In the left-hand menu, under Control Panel, click Basics.
            7. In the Search Preferences section, select Search the entire web but emphasize included sites.
            8. Click Save Changes.
            9. In the left-hand menu, under Control Panel, click Sites.
            10. Delete the site you entered during the initial setup process.
            11. Now your custom search engine will search the entire web.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Search.Web.Request.WebSearchRequest.Options">
            <summary>
            Define properties of your search, like the search expression, number of results, language etc.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Search.Web.Request.WebSearchRequest.GetQueryStringParameters">
            <summary>
            See <see cref="M:GoogleApi.Entities.BaseRequest.GetQueryStringParameters"/>.
            </summary>
            <returns>The <see cref="T:System.Collections.Generic.IList`1"/> collection.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Translate.BaseTranslateRequest">
            <summary>
            Base abstract translate request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.BaseTranslateRequest.BaseUrl">
            <inheritdoc />
        </member>
        <member name="M:GoogleApi.Entities.Translate.BaseTranslateRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Translate.Common.Enums.Extensions.LanguageExtension">
            <summary>
            Language Extensions.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Translate.Common.Enums.Extensions.LanguageExtension.ToCode(GoogleApi.Entities.Translate.Common.Enums.Language)">
            <summary>
            Gets the ISO-639-1 code for the specified <see cref="T:GoogleApi.Entities.Translate.Common.Enums.Language"/>.
            </summary>
            <param name="language">The <see cref="T:GoogleApi.Entities.Translate.Common.Enums.Language"/>.</param>
            <returns>The ISO-639-1 code matching the passed <paramref name="language"/>.</returns>
        </member>
        <member name="M:GoogleApi.Entities.Translate.Common.Enums.Extensions.LanguageExtension.IsValidNmt(GoogleApi.Entities.Translate.Common.Enums.Language)">
            <summary>
            Determines whether the <see cref="T:GoogleApi.Entities.Translate.Common.Enums.Language"/> passed is comptabile with <see cref="F:GoogleApi.Entities.Translate.Common.Enums.Model.Nmt"/>.
            https://cloud.google.com/translate/docs/languages
            </summary>
            <param name="language">The <see cref="T:GoogleApi.Entities.Translate.Common.Enums.Language"/> to evaluate.</param>
            <returns>True, if compatable with <see cref="F:GoogleApi.Entities.Translate.Common.Enums.Model.Nmt"/>, otherwise false.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Translate.Common.Enums.Extensions.StringExtension">
            <summary>
            String Extensions.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Translate.Common.Enums.Extensions.StringExtension.FromCode(System.String)">
            <summary>
            Gets the <see cref="T:GoogleApi.Entities.Translate.Common.Enums.Language"/> for the specified ISO-639-1/(2) code.
            </summary>
            <param name="code">The ISO-639-1 code.</param>
            <returns>the <see cref="T:GoogleApi.Entities.Translate.Common.Enums.Language"/> matching the passed <paramref name="code"/>.</returns>
        </member>
        <member name="T:GoogleApi.Entities.Translate.Common.Enums.Language">
            <summary>
            The Translation API's recognition engine supports a wide variety of languages for the Phrase-Based Machine Translation (PBMT) and 
            Neural Machine Translation (NMT) models. 
            These languages are specified within a recognition request using language code parameters as noted on this page. 
            Most language code parameters conform to ISO-639-1 identifiers, except where noted.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Afrikaans">
            <summary>
            Afrikaans.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Albanian">
            <summary>
            Albanian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Amharic">
            <summary>
            Amharic.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Arabic">
            <summary>
            Arabic.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Armenian">
            <summary>
            Armenian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Azeerbaijani">
            <summary>
            Azeerbaijani.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Basque">
            <summary>
            Basque.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Belarusian">
            <summary>
            Belarusian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Bengali">
            <summary>
            Bengali.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Bosnian">
            <summary>
            Bosnian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Bulgarian">
            <summary>
            Bulgarian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Catalan">
            <summary>
            Catalan.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Cebuano">
            <summary>
            Cebuano. (ISO-639-2)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Chichewa">
            <summary>
            Chichewa.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Chinese">
            <summary>
            Chinese.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Chinese_Simplified">
            <summary>
            Chinese simplified. (BCP-47)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Chinese_Traditional">
            <summary>
            Chinese traditional. (BCP-47)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Corsican">
            <summary>
            Corsican.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Croatian">
            <summary>
            Croatian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Czech">
            <summary>
            Czech.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Danish">
            <summary>
            Danish.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Dutch">
            <summary>
            Dutch.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.English">
            <summary>
            English.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Esperanto">
            <summary>
            Esperanto.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Estonian">
            <summary>
            Estonian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Filipino">
            <summary>
            Filipino.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Finnish">
            <summary>
            Finnish.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.French">
            <summary>
            French.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Frisian">
            <summary>
            Frisian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Galician">
            <summary>
            Galician.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Georgian">
            <summary>
            Georgian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.German">
            <summary>
            German.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Greek">
            <summary>
            Greek.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Gujarati">
            <summary>
            Gujarati.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Haitian_Creole">
            <summary>
            Haitian_Creole.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Hausa">
            <summary>
            Hausa.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Hawaiian">
            <summary>
            Hawaiian. (ISO-639-2)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Hebrew">
            <summary>
            Hebrew. (2nd ISO-631-1 code)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.HebrewOld">
            <summary>
            Hebrew.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Hindi">
            <summary>
            Hindi.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Hmong">
            <summary>
            Hmong. (ISO-639-2)
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Hungarian">
            <summary>
            Hungarian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Icelandic">
            <summary>
            Icelandic.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Igbo">
            <summary>
            Igbo.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Indonesian">
            <summary>
            Indonesian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Irish">
            <summary>
            Irish.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Italian">
            <summary>
            Italian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Japanese">
            <summary>
            Japanese.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Javanese">
            <summary>
            Javanese.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Kannada">
            <summary>
            Kannada.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Kazakh">
            <summary>
            Kazakh.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Khmer">
            <summary>
            Khmer.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Kinyarwanda">
            <summary>
            Kinyarwanda.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Korean">
            <summary>
            Korean.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Kurdish">
            <summary>
            Kurdish.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Kyrgyz">
            <summary>
            Kyrgyz.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Lao">
            <summary>
            Lao.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Latin">
            <summary>
            Latin.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Latvian">
            <summary>
            Latvian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Lithuanian">
            <summary>
            Lithuanian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Luxembourgish">
            <summary>
            Luxembourgish.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Macedonian">
            <summary>
            Macedonian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Malagasy">
            <summary>
            Malagasy.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Malay">
            <summary>
            Malay.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Malayalam">
            <summary>
            Malayalam.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Maltese">
            <summary>
            Maltese.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Maori">
            <summary>
            Maori.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Marathi">
            <summary>
            Marathi.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Mongolian">
            <summary>
            Mongolian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Burmese">
            <summary>
            Burmese.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Nepali">
            <summary>
            Nepali.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Norwegian">
            <summary>
            Norwegian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Odia">
            <summary>
            Odia.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Pashto">
            <summary>
            Pashto.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Persian">
            <summary>
            Persian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Polish">
            <summary>
            Polish.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Portuguese">
            <summary>
            Portuguese.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Punjabi">
            <summary>
            Punjabi.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Romanian">
            <summary>
            Romanian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Russian">
            <summary>
            Russian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Samoan">
            <summary>
            Samoan.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Scots_Gaelic">
            <summary>
            Scots_Gaelic.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Serbian">
            <summary>
            Serbian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Sesotho">
            <summary>
            Sesotho.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Shona">
            <summary>
            Shona.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Sindhi">
            <summary>
            Sindhi.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Sinhala">
            <summary>
            Sinhala.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Slovak">
            <summary>
            Slovak.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Slovenian">
            <summary>
            Slovenian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Somali">
            <summary>
            Somali.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Spanish">
            <summary>
            Spanish.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Sundanese">
            <summary>
            Sundanese.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Swahili">
            <summary>
            Swahili.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Swedish">
            <summary>
            Swedish.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Tajik">
            <summary>
            Tajik.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Tamil">
            <summary>
            Tamil.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Tatar">
            <summary>
            Tatar.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Telugu">
            <summary>
            Telugu.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Thai">
            <summary>
            Thai.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Turkish">
            <summary>
            Turkish.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Turkmen">
            <summary>
            Turkmen.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Ukrainian">
            <summary>
            Ukrainian.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Urdu">
            <summary>
            Urdu.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Uyghur">
            <summary>
            Uyghur.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Uzbek">
            <summary>
            Uzbek.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Vietnamese">
            <summary>
            Vietnamese.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Welsh">
            <summary>
            Welsh.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Xhosa">
            <summary>
            Xhosa.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Yiddish">
            <summary>
            Yiddish.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Yoruba">
            <summary>
            Yoruba.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Language.Zulu">
            <summary>
            Zulu.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Translate.Common.Enums.Model">
            <summary>
            The translation model. 
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Model.Base">
            <summary>
            Base, Phrase-Based Machine Translation (PBMT) model
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Common.Enums.Model.Nmt">
            <summary>
            Nmt, Neural Machine Translation (NMT) model.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Translate.Detect.Request.DetectRequest">
            <summary>
            Detect Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Detect.Request.DetectRequest.BaseUrl">
            <inheritdoc />
        </member>
        <member name="P:GoogleApi.Entities.Translate.Detect.Request.DetectRequest.Qs">
            <summary>
            Required. The input text upon which to perform language detection. 
            Repeat this parameter to perform language detection on multiple text inputs.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Translate.Detect.Request.DetectRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Translate.Detect.Response.Data">
            <summary>
            The list of detection responses.
            This list will contain a language detection response for each query (q) sent in the language detection request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Detect.Response.Data.Detections">
            <summary>
            A response list contains a list of separate language detection responses.
            Language detection results for each input text piece. For backward compatibility, this list must be expressed as an array of arrays, 
            which requires using ListValue in proto3.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Translate.Detect.Response.Detection">
            <summary>
            Language detection result.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Detect.Response.Detection.IsReliable">
            <summary>
            Indicates whether the language detection result is reliable.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Detect.Response.Detection.Confidence">
            <summary>
            The confidence of the detection result for this language.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Detect.Response.Detection.Language">
            <summary>
            The detected language.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Translate.Detect.Response.DetectResponse">
            <summary>
            Detect Response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Detect.Response.DetectResponse.Data">
            <summary>
            Container for the detected results.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Translate.Languages.Request.LanguagesRequest">
            <summary>
            Languages Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Languages.Request.LanguagesRequest.BaseUrl">
            <inheritdoc />
        </member>
        <member name="P:GoogleApi.Entities.Translate.Languages.Request.LanguagesRequest.Target">
            <summary>
            The target language code for the results.If specified, then the language names are returned in the name field of the response, 
            localized in the target language.If you do not supply a target language, then the name field is omitted from the response and only 
            the language codes are returned.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Translate.Languages.Request.LanguagesRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Translate.Languages.Response.Data">
            <summary>
            A list of supported language responses.
            This list will contain an entry for each language supported by the Translation API    
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Languages.Response.Data.Languages">
            <summary>
            The set of supported languages.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Translate.Languages.Response.LanguagesResponse">
            <summary>
            Languages Response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Languages.Response.LanguagesResponse.Data">
            <summary>
            Container for the languages results.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Translate.Languages.Response.SupportedLanguage">
            <summary>
            A single supported language response corresponds to information related to one supported language.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Languages.Response.SupportedLanguage.Name">
            <summary>
            Human readable name of the language localized to the target language.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Languages.Response.SupportedLanguage.Language">
            <summary>
            Supported language code, generally consisting of its ISO 639-1 identifier. (E.g. 'en', 'ja'). In certain cases, BCP-47 codes 
            including language + region identifiers are returned(e.g. 'zh-TW' and 'zh-CH')
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Translate.Translate.Request.Enums.Format">
            <summary>
            The format of the source text, in either HTML (default) or plain-text.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Translate.Request.Enums.Format.Html">
            <summary>
            Html format.
            </summary>
        </member>
        <member name="F:GoogleApi.Entities.Translate.Translate.Request.Enums.Format.Text">
            <summary>
            Plain text format.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Translate.Translate.Request.TranslateRequest">
            <summary>
            Translate Request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Translate.Request.TranslateRequest.Source">
            <summary>
            The language of the source text, set to one of the language codes listed in Language Support. 
            If the source language is not specified, the API will attempt to detect the source language automatically and 
            return it within the response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Translate.Request.TranslateRequest.Target">
            <summary>
            Required. The language to use for translation of the input text, 
            set to one of the language codes listed in Language Support.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Translate.Request.TranslateRequest.Qs">
            <summary>
            Required. The input text to translate. 
            Repeat this parameter to perform translation operations on multiple text inputs.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Translate.Request.TranslateRequest.Model">
            <summary>
            The translation model. 
            Can be either base to use the Phrase-Based Machine Translation (PBMT) model, 
            or nmt to use the Neural Machine Translation (NMT) model. If omitted, then nmt is used.
            If the model is nmt, and the requested language translation pair is not supported for the NMT model, 
            then the request is translated using the base model.
            Languages supported by the NMT model can only be translated to or from English(en).
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Translate.Request.TranslateRequest.Format">
            <summary>
            The format of the source text, in either HTML (default) or plain-text. 
            A value of html indicates HTML and a value of text indicates plain-text.
            Default: format=html.
            </summary>
        </member>
        <member name="M:GoogleApi.Entities.Translate.Translate.Request.TranslateRequest.GetQueryStringParameters">
            <inheritdoc />
        </member>
        <member name="T:GoogleApi.Entities.Translate.Translate.Response.Data">
            <summary>
            The list of language translation responses.
            This list contains a language translation response for each query (q) sent in the language translation request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Translate.Response.Data.Translations">
            <summary>
            Contains list of translation results of the supplied text.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Translate.Translate.Response.TranslateResponse">
            <summary>
            Translate Response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Translate.Response.TranslateResponse.Data">
            <summary>
            Container for the translated results.
            </summary>
        </member>
        <member name="T:GoogleApi.Entities.Translate.Translate.Response.Translation">
            <summary>
            Translation result of a supplied text.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Translate.Response.Translation.TranslatedText">
            <summary>
            The source language detected by google when not supplied in the request.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Translate.Response.Translation.Model">
            <summary>
            The translation model. 
            Can be either base for the Phrase-Based Machine Translation(PBMT) model, or nmt for the Neural Machine Translation(NMT) model.
            If you did not include a model parameter with your request, then this field is not included in the response.
            </summary>
        </member>
        <member name="P:GoogleApi.Entities.Translate.Translate.Response.Translation.DetectedSourceLanguage">
            <summary>
            The source language of the initial request, detected automatically, if no source language was passed within the initial request. 
            If the source language was passed, auto-detection of the language will not occur and this field will be omitted.
            </summary>
        </member>
        <member name="T:GoogleApi.Exceptions.GoogleApiException">
            <summary>
            Exception that is thrown when Google returns a status code 
            </summary>
        </member>
        <member name="M:GoogleApi.Exceptions.GoogleApiException.#ctor(System.String)">
            <summary>
            Constructor, accepting a error message and a optional status.
            </summary>
            <param name="message">The error message.</param>
        </member>
        <member name="M:GoogleApi.Exceptions.GoogleApiException.#ctor(System.String,System.Exception)">
            <summary>
            Constructor, accepting a error message and a optional status.
            </summary>
            <param name="message">The error message.</param>
            <param name="innerException">The inner exception.</param>
        </member>
        <member name="T:GoogleApi.GoogleFunctions">
            <summary>
            Polyline encoding is a lossy compression algorithm that allows you to store a series of coordinates as a single string. Point coordinates are encoded using signed values. If you only have a few static points, you may also wish to use the interactive polyline encoding utility.
            The encoding process converts a binary value into a series of character codes for ASCII characters using the familiar base64 encoding scheme: to ensure proper display of these characters, encoded values are summed with 63 (the ASCII character '?') before converting them into ASCII. The algorithm also checks for additional character codes for a given point by checking the least significant bit of each byte group; if this bit is set to 1, the point is not yet fully formed and additional data must follow.
            Additionally, to conserve space, points only include the offset from the previous point (except of course for the first point). All points are encoded in Base64 as signed integers, as latitudes and longitudes are signed values. The encoding format within a polyline needs to represent two coordinates representing latitude and longitude to a reasonable precision. Given a maximum longitude of +/- 180 degrees to a precision of 5 decimal places (180.00000 to -180.00000), this results in the need for a 32 bit signed binary integer value.
            Note that the backslash is interpreted as an escape character within string literals. Any output of this utility should convert backslash characters to double-backslashes within string literals.
            See https://developers.google.com/maps/documentation/utilities/polylinealgorithm
            </summary>
        </member>
        <member name="M:GoogleApi.GoogleFunctions.EncodePolyLine(System.Collections.Generic.IEnumerable{GoogleApi.Entities.Common.Coordinate})">
            <summary>
            Encode a list of locations into a polyline string. 
            </summary>
            <param name="locations"></param>
            <returns></returns>
        </member>
        <member name="M:GoogleApi.GoogleFunctions.MergePolyLine(System.String[])">
            <summary>
            Merge polylines into one encoded polyline string.
            </summary>
            <param name="encodedLocations"></param>
            <returns></returns>
        </member>
        <member name="M:GoogleApi.GoogleFunctions.DecodePolyLine(System.String)">
            <summary>
            Decode a polyline string into locations.
            </summary>
            <param name="encodedLocations"></param>
            <returns></returns>
        </member>
        <member name="T:GoogleApi.GoogleMaps">
            <summary>
            The Google Maps Web Services are a collection of HTTP interfaces to Google services providing geographic data for your maps applications. 
            - Google Maps Directions API
            - Google Maps Distance Matrix API
            - Google Maps Elevation API
            - Google Maps Geocoding API
            - Google Maps Geolocation API
            - Google Maps Roads API
            - Google Maps Time Zone API
            Documentation: https://developers.google.com/maps/documentation
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleMaps.PlaceGeocode">
            <summary>
            Geocoding is the process of converting addresses (like "1600 Amphitheatre Parkway, Mountain View, CA") into
            geographic coordinates (like latitude 37.423021 and longitude -122.083739), which you can use to place markers on a map, or position the map.
            This is the process of converting a place id into a address.
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleMaps.AddressGeocode">
            <summary>
            Geocoding is the process of converting addresses (like "1600 Amphitheatre Parkway, Mountain View, CA") into
            geographic coordinates (like latitude 37.423021 and longitude -122.083739), which you can use to place markers on a map, or position the map.
            https://developers.google.com/maps/documentation/geocoding/intro#geocoding
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleMaps.LocationGeocode">
            <summary>
            The term geocoding generally refers to translating a human-readable address into a location on a map.
            The process of doing the opposite, translating a location on the map into a human-readable address, is known as reverse geocoding.
            https://developers.google.com/maps/documentation/geocoding/intro#ReverseGeocoding
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleMaps.PlusCodeGeocode">
            <summary>
            The pluscode api is the process of converting a location (lat/lng or address) to a plus code (including the bounding box and the center).
            This API is experimental.
            As of December 2016, we are soliciting feedback on the functionality, in order to inform proposals to geocoding API providers such as Google.
            You can discuss the API in the public mailing list or create an issue in the issue tracker.
            https://github.com/google/open-location-code/wiki/Plus-codes-API
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleMaps.Geolocation">
            <summary>
            The Google Maps Geolocation API returns a location and accuracy radius based on information about cell towers and WiFi nodes that the mobile client can detect. 
            This document describes the protocol used to send this data to the server and to return a response to the client.
            Communication is done over HTTPS using POST. Both request and response are formatted as JSON, and the content type of both is application/json.            
            Before you start developing with the Geolocation API, review the authentication requirements (you need an API key) and the API usage limits.
            https://developers.google.com/maps/documentation/geolocation/intro
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleMaps.Elevation">
            <summary>
            The Google Maps Elevation API provides you a simple interface to query locations on the earth for elevation data. Additionally, 
            you may request sampled elevation data along paths, allowing you to calculate elevation changes along routes.
            https://developers.google.com/maps/documentation/elevation/intro
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleMaps.Directions">
            <summary>
            Google Maps Directions API is a service that calculates directions between locations using an HTTP request.
            You can search for directions for several modes of transportation, include transit, driving, walking or cycling. Directions may specify origins, 
            destinations and waypoints either as text strings (e.g. "Chicago, IL" or "Darwin, NT, Australia") or as latitude/longitude coordinates. 
            The Directions API can return multi-part directions using a series of waypoints.
            This service is generally designed for calculating directions for static (known in advance) addresses for placement of application content on a map; 
            this service is not designed to respond in real time to user input, for example. 
            For dynamic directions calculations (for example, within a user interface element), consult the documentation for the Google Maps JavaScript API Directions Service.
            Calculating directions is a time and resource intensive task. Whenever possible, calculate known addresses ahead of time (using the service described here) 
            and store your results in a temporary cache of your own design.
            https://developers.google.com/maps/documentation/directions/intro
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleMaps.DistanceMatrix">
            <summary>
            The Google Maps Distance Matrix API is a service that provides travel distance and time for a matrix of origins and destinations. 
            The information returned is based on the recommended route between start and end points, as calculated by the Google Maps API, 
            and consists of rows containing duration and distance values for each pair.
            https://developers.google.com/maps/documentation/distance-matrix/intro
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleMaps.TimeZone">
            <summary>
            The Google Maps Time Zone API provides a simple interface to request the time zone for a location on the earth, as well as that location's time offset from UTC.
            The Google Maps Time Zone API provides time offset data for locations on the surface of the earth. 
            Requesting the time zone information for a specific Latitude/Longitude pair will return the name of that time zone, the time offset from UTC, and the Daylight Savings offset.
            https://developers.google.com/maps/documentation/timezone/intro
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleMaps.SnapToRoad">
            <summary>
            The snapToRoads method takes up to 100 GPS points collected along a route, and returns a similar set of data, 
            with the points snapped to the most likely roads the vehicle was traveling along. Optionally, you can request that the points be interpolated, 
            resulting in a path that smoothly follows the geometry of the road.
            https://developers.google.com/maps/documentation/roads/snap
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleMaps.NearestRoads">
            <summary>
            The Google Maps Roads API takes takes up to 100 independent coordinates, and returns the closest road segment for each point. 
            The points passed do not need to be part of a continuous path.
            NOTE: If you are working with sequential GPS points, use Snap to Roads.
            https://developers.google.com/maps/documentation/roads/nearest
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleMaps.SpeedLimits">
            <summary>
            The speedLimits method returns the posted speed limit for a given road segment. 
            In the case of road segments with variable speed limits, the default speed limit for the segment is returned.
            The accuracy of speed limit data returned by the Google Maps Roads API cannot be guaranteed. The speed limit data provided is not real-time, 
            and may be estimated, inaccurate, incomplete, and/or outdated. Inaccuracies in our data may be reported through the Google Map Maker service.
            https://developers.google.com/maps/documentation/roads/speed-limits
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleMaps.StreetView">
            <summary>
            The Google Street View Image API lets you embed a static (non-interactive) Street View panorama or thumbnail into your web page, without the use of JavaScript.
            The viewport is defined with URL parameters sent through a standard HTTP request, and is returned as a static image.
            https://developers.google.com/maps/documentation/streetview/intro
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleMaps.StaticMaps">
            <summary>
            The Google Static Maps API lets you embed a Google Maps image on your web page without requiring JavaScript or any dynamic page loading. 
            The Google Static Maps API service creates your map based on URL parameters sent through a standard HTTP request and returns the map as an image 
            you can display on your web page.
            https://developers.google.com/maps/documentation/static-maps/intro
            </summary>
        </member>
        <member name="T:GoogleApi.GooglePlaces">
            <summary>
            Methods to access Google Places Api: 
            https://developers.google.com/places/web-service/intro
            </summary>
        </member>
        <member name="P:GoogleApi.GooglePlaces.Photos">
            <summary>
            The Place Photo service, part of the Google Places API Web Service, is a read-only API that allows you to add high quality photographic content to your application. 
            The Place Photo service gives you access to the millions of photos stored in the Places and Google+ Local database. When you get place information using a Place Details request, 
            photo references will be returned for relevant photographic content. The Nearby Search and Text Search requests also return a single photo reference per place, when relevant. 
            Using the Photo service you can then access the referenced photos and resize the image to the optimal size for your application.
            https://developers.google.com/places/web-service/photos
            </summary>
        </member>
        <member name="P:GoogleApi.GooglePlaces.FindSearch">
            <summary>
            The Google Places API Find Search Service is a web service that returns information about a set of places based on an input.
            A Find Place request takes a text input, and returns a place.
            The text input can be any kind of Places data, for example, a name, address, or phone number.
            https://developers.google.com/places/web-service/search#FindPlaceRequests
            </summary>
        </member>
        <member name="P:GoogleApi.GooglePlaces.TextSearch">
            <summary>
            The Google Places API Text Search Service is a web service that returns information about a set of places based on a string — for example "pizza in New York" or "shoe stores near Ottawa". 
            The service responds with a list of places matching the text string and any location bias that has been set. 
            The search response will include a list of places, you can send a Place Details request for more information about any of the places in the response.
            https://developers.google.com/places/web-service/search
            </summary>
        </member>
        <member name="P:GoogleApi.GooglePlaces.NearBySearch">
            <summary>
            A Nearby Search lets you search for places within a specified area. 
            You can refine your search request by supplying keywords or specifying the type of place you are searching for
            https://developers.google.com/places/web-service/search
            </summary>
        </member>
        <member name="P:GoogleApi.GooglePlaces.Details">
            <summary>
            Once you have a place_id from a Place Search, you can request more details about a particular establishment or point of interest by initiating a Place Details request. 
            A Place Details request returns more comprehensive information about the indicated place such as its complete address, phone number, user rating and reviews.
            https://developers.google.com/places/web-service/details
            </summary>
        </member>
        <member name="P:GoogleApi.GooglePlaces.AutoComplete">
            <summary>
            The Query Autocomplete service can be used to provide a query prediction for text-based geographic searches, by returning suggested queries as you type.
            https://developers.google.com/places/web-service/query
            </summary>
        </member>
        <member name="P:GoogleApi.GooglePlaces.QueryAutoComplete">
            <summary>
            The Place Autocomplete service is a web service that returns place predictions in response to an HTTP request. 
            The request specifies a textual search string and optional geographic bounds. The service can be used to provide autocomplete functionality for text-based geographic searches, 
            by returning places such as businesses, addresses and points of interest as a user types.
            https://developers.google.com/places/web-service/autocomplete
            </summary>
        </member>
        <member name="T:GoogleApi.GoogleSearch">
            <summary>
            The JSON/Atom Custom Search API lets you develop websites and applications to retrieve and display search results from Google Custom Search programmatically. 
            With this API, you can use RESTful requests to get either web search or image search results in JSON or Atom format. 
            https://developers.google.com/custom-search/docs/overview
            By calling the API user issues requests against an existing instance of a Custom Search Engine. 
            Therefore, before using the API, you need to create one in the Control Panel (https://cse.google.com/cse/all).
            Follow the tutorial to learn more about different configuration options. You can find the engine's ID in the Setup > Basics > Details section of the Control Panel.
            REST Api: https://developers.google.com/custom-search/json-api/v1/overview
            There are also two external documents that are helpful resources for using this API: 
            - Google WebSearch Protocol(XML): The JSON/Atom Custom Search API provides a subset of the functionality provided by the XML API, but it instead returns data in JSON or Atom format. (https://developers.google.com/custom-search/docs/xml_results)
            - OpenSearch 1.1 Specification: This API uses the OpenSearch specification to describe the search engine and provide data regarding the results.Because of this, you can write your code so that it can support any OpenSearch engine, not just Google's custom search engine. There is currently no other JSON implementation of OpenSearch, so all the examples in the OpenSearch spec are in XML. (http://www.opensearch.org/Specifications/OpenSearch/1.1)
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleSearch.WebSearch">
            <summary>
            Web Search.
            You can retrieve results for a particular search by sending an HTTP GET request to its URI. 
            You pass in the details of the search request as query parameters. 
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleSearch.ImageSearch">
            <summary>
            Image Search.
            You can retrieve results for a particular search by sending an HTTP GET request to its URI.
            You pass in the details of the search request as query parameters. 
            </summary>
        </member>
        <member name="T:GoogleApi.GoogleSearch.VideoSearch">
            <summary>
            Video Search (nested class).
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleSearch.VideoSearch.Videos">
            <summary>
            Video Search.
            You can retrieve results for a particular search by sending an HTTP GET request to its URI.
            You pass in the details of the search request as query parameters.
            Docs: https://developers.google.com/youtube/v3/getting-started
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleSearch.VideoSearch.Channels">
            <summary>
            Video Channel Search
            You can retrieve results for a particular search by sending an HTTP GET request to its URI.
            You pass in the details of the search request as query parameters.
            Docs: https://developers.google.com/youtube/v3/getting-started
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleSearch.VideoSearch.Playlists">
            <summary>
            Video Playlist Search
            You can retrieve results for a particular search by sending an HTTP GET request to its URI.
            You pass in the details of the search request as query parameters.
            Docs: https://developers.google.com/youtube/v3/getting-started
            </summary>
        </member>
        <member name="T:GoogleApi.GoogleTranslate">
            <summary>
            Google Translate dynamically translates text between thousands of language pairs.
            https://cloud.google.com/translate/docs/reference/rest
            Supported Languages: https://cloud.google.com/translate/docs/languages
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleTranslate.Translate">
            <summary>
            Translates input text, returning translated text.
            https://cloud.google.com/translate/docs/reference/translate
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleTranslate.Detect">
            <summary>
            Detects the language of text within a request.
            https://cloud.google.com/translate/docs/reference/detect
            </summary>
        </member>
        <member name="P:GoogleApi.GoogleTranslate.Languages">
            <summary>
            Returns a list of supported languages for translation.
            https://cloud.google.com/translate/docs/reference/languages
            </summary>
        </member>
        <member name="T:GoogleApi.HttpEngine">
            <summary>
            Http Engine (abstract).
            </summary>
        </member>
        <member name="P:GoogleApi.HttpEngine.HttpClient">
            <summary>
            Http Client.
            </summary>
        </member>
        <member name="P:GoogleApi.HttpEngine.Proxy">
            <summary>
            Proxy property that will be used for all requests.
            </summary>
        </member>
        <member name="M:GoogleApi.HttpEngine.Dispose">
            <summary>
            Disposes.
            </summary>
        </member>
        <member name="M:GoogleApi.HttpEngine.Dispose(System.Boolean)">
            <summary>
            Disposes of the <see cref="P:GoogleApi.HttpEngine.HttpClient"/>, if <paramref name="disposing"/> is true.
            </summary>
            <param name="disposing">Whether to dispose resources or not.</param>
        </member>
        <member name="T:GoogleApi.HttpEngine`2">
            <summary>
            Http Engine.
            Manges the http connections, and is responsible for invoking requst and handling responses.
            </summary>
            <typeparam name="TRequest"></typeparam>
            <typeparam name="TResponse"></typeparam>
        </member>
        <member name="M:GoogleApi.HttpEngine`2.Query(`0,GoogleApi.HttpEngineOptions)">
            <summary>
            Query.
            </summary>
            <param name="request">The request that will be sent.</param>
            <param name="httpEngineOptions">The <see cref="T:GoogleApi.HttpEngineOptions"/>.</param>
            <returns>The <see cref="T:GoogleApi.Entities.Interfaces.IResponse"/>.</returns>
        </member>
        <member name="M:GoogleApi.HttpEngine`2.QueryAsync(`0,System.Threading.CancellationToken)">
            <summary>
            Query Async.
            </summary>
            <param name="request">The request that will be sent.</param>
            <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken"/>.</param>
            <returns>The <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
        </member>
        <member name="M:GoogleApi.HttpEngine`2.QueryAsync(`0,GoogleApi.HttpEngineOptions,System.Threading.CancellationToken)">
            <summary>
            Query Async.
            </summary>
            <param name="request">The request that will be sent.</param>
            <param name="httpEngineOptions">The <see cref="T:GoogleApi.HttpEngineOptions"/></param>
            <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken"/>.</param>
            <returns>The <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
        </member>
        <member name="T:GoogleApi.HttpEngineOptions">
            <summary>
            Http Engine Options.
            </summary>
        </member>
        <member name="P:GoogleApi.HttpEngineOptions.ThrowOnInvalidRequest">
            <summary>
            Throw On Bad Request.
            </summary>
        </member>
    </members>
</doc>
