blackOwned = $blackOwned; } /** * @return AccountIdentityType */ public function getBlackOwned() { return $this->blackOwned; } /** * Required. By setting this field, your business may be included in * promotions for all the selected attributes. If you clear this option, it * won't affect your identification with any of the attributes. For this field * to be set, the merchant must self identify with at least one of the * `AccountIdentityType`. If none are included, the request will be considered * invalid. * * @param bool $includeForPromotions */ public function setIncludeForPromotions($includeForPromotions) { $this->includeForPromotions = $includeForPromotions; } /** * @return bool */ public function getIncludeForPromotions() { return $this->includeForPromotions; } /** * Specifies whether the business identifies itself as being latino-owned. * This optional field is only available for merchants with a business country * set to "US". This field is not allowed for marketplaces or marketplace * sellers. * * @param AccountIdentityType $latinoOwned */ public function setLatinoOwned(AccountIdentityType $latinoOwned) { $this->latinoOwned = $latinoOwned; } /** * @return AccountIdentityType */ public function getLatinoOwned() { return $this->latinoOwned; } /** * Specifies whether the business identifies itself as a small business. This * optional field is only available for merchants with a business country set * to "US". It is also not allowed for marketplaces, but it is allowed to * marketplace sellers. * * @param AccountIdentityType $smallBusiness */ public function setSmallBusiness(AccountIdentityType $smallBusiness) { $this->smallBusiness = $smallBusiness; } /** * @return AccountIdentityType */ public function getSmallBusiness() { return $this->smallBusiness; } /** * Specifies whether the business identifies itself as being veteran-owned. * This optional field is only available for merchants with a business country * set to "US". This field is not allowed for marketplaces or marketplace * sellers. * * @param AccountIdentityType $veteranOwned */ public function setVeteranOwned(AccountIdentityType $veteranOwned) { $this->veteranOwned = $veteranOwned; } /** * @return AccountIdentityType */ public function getVeteranOwned() { return $this->veteranOwned; } /** * Specifies whether the business identifies itself as being women-owned. This * optional field is only available for merchants with a business country set * to "US". This field is not allowed for marketplaces or marketplace sellers. * * @param AccountIdentityType $womenOwned */ public function setWomenOwned(AccountIdentityType $womenOwned) { $this->womenOwned = $womenOwned; } /** * @return AccountIdentityType */ public function getWomenOwned() { return $this->womenOwned; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AccountBusinessIdentity::class, 'Google_Service_ShoppingContent_AccountBusinessIdentity');