Class: Google::Apis::IapV1::Brand

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/iap_v1/classes.rb,
generated/google/apis/iap_v1/representations.rb,
generated/google/apis/iap_v1/representations.rb

Overview

OAuth brand data. NOTE: Only contains a portion of the data that describes a brand.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Brand

Returns a new instance of Brand.



192
193
194
# File 'generated/google/apis/iap_v1/classes.rb', line 192

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#application_titleString

Application name displayed on OAuth consent screen. Corresponds to the JSON property applicationTitle

Returns:

  • (String)


171
172
173
# File 'generated/google/apis/iap_v1/classes.rb', line 171

def application_title
  @application_title
end

#nameString

Output only. Identifier of the brand. NOTE: GCP project number achieves the same brand identification purpose as only one brand per project can be created. Corresponds to the JSON property name

Returns:

  • (String)


178
179
180
# File 'generated/google/apis/iap_v1/classes.rb', line 178

def name
  @name
end

#org_internal_onlyBoolean Also known as: org_internal_only?

Output only. Whether the brand is only intended for usage inside the GSuite organization only. Corresponds to the JSON property orgInternalOnly

Returns:

  • (Boolean)


184
185
186
# File 'generated/google/apis/iap_v1/classes.rb', line 184

def org_internal_only
  @org_internal_only
end

#support_emailString

Support email displayed on the OAuth consent screen. Corresponds to the JSON property supportEmail

Returns:

  • (String)


190
191
192
# File 'generated/google/apis/iap_v1/classes.rb', line 190

def support_email
  @support_email
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



197
198
199
200
201
202
# File 'generated/google/apis/iap_v1/classes.rb', line 197

def update!(**args)
  @application_title = args[:application_title] if args.key?(:application_title)
  @name = args[:name] if args.key?(:name)
  @org_internal_only = args[:org_internal_only] if args.key?(:org_internal_only)
  @support_email = args[:support_email] if args.key?(:support_email)
end