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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/iap_v1/classes.rb,
lib/google/apis/iap_v1/representations.rb,
lib/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

Constructor Details

#initialize(**args) ⇒ Brand

Returns a new instance of Brand.



383
384
385
# File 'lib/google/apis/iap_v1/classes.rb', line 383

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)


363
364
365
# File 'lib/google/apis/iap_v1/classes.rb', line 363

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)


369
370
371
# File 'lib/google/apis/iap_v1/classes.rb', line 369

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 G Suite organization only. Corresponds to the JSON property orgInternalOnly

Returns:

  • (Boolean)


375
376
377
# File 'lib/google/apis/iap_v1/classes.rb', line 375

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)


381
382
383
# File 'lib/google/apis/iap_v1/classes.rb', line 381

def support_email
  @support_email
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



388
389
390
391
392
393
# File 'lib/google/apis/iap_v1/classes.rb', line 388

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