Struct google_partners2::Company [] [src]

pub struct Company {
    pub industries: Option<Vec<String>>,
    pub original_min_monthly_budget: Option<Money>,
    pub converted_min_monthly_budget: Option<Money>,
    pub name: Option<String>,
    pub localized_infos: Option<Vec<LocalizedCompanyInfo>>,
    pub locations: Option<Vec<Location>>,
    pub website_url: Option<String>,
    pub ranks: Option<Vec<Rank>>,
    pub services: Option<Vec<String>>,
    pub certification_statuses: Option<Vec<CertificationStatus>>,
    pub public_profile: Option<PublicProfile>,
    pub id: Option<String>,
}

A company resource in the Google Partners API. Once certified, it qualifies for being searched by advertisers.

This type is not used in any activity, and only used as part of another schema.

Fields

Industries the company can help with.

The unconverted minimum monthly budget that the company accepts for partner business.

The minimum monthly budget that the company accepts for partner business, converted to the requested currency code.

The name of the company.

The list of localized info for the company.

The list of company locations.

URL of the company's website.

Information related to the ranking of the company within the list of companies.

Services the company can help with.

The list of Google Partners certification statuses for the company.

Basic information from the company's public profile.

The ID of the company.

Trait Implementations

impl Debug for Company
[src]

Formats the value using the given formatter.

impl Clone for Company
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Company
[src]

Returns the "default value" for a type. Read more

impl Part for Company
[src]