Class: Google::Apis::AdminDirectoryV1::UserPhoto

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

Overview

JSON template for Photo object in Directory API.

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) ⇒ UserPhoto

Returns a new instance of UserPhoto.



2925
2926
2927
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2925

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

Instance Attribute Details

#etagString

ETag of the resource. Corresponds to the JSON property etag

Returns:

  • (String)


2888
2889
2890
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2888

def etag
  @etag
end

#heightFixnum

Height in pixels of the photo Corresponds to the JSON property height

Returns:

  • (Fixnum)


2893
2894
2895
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2893

def height
  @height
end

#idString

Unique identifier of User (Read-only) Corresponds to the JSON property id

Returns:

  • (String)


2898
2899
2900
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2898

def id
  @id
end

#kindString

Kind of resource this is. Corresponds to the JSON property kind

Returns:

  • (String)


2903
2904
2905
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2903

def kind
  @kind
end

#mime_typeString

Mime Type of the photo Corresponds to the JSON property mimeType

Returns:

  • (String)


2908
2909
2910
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2908

def mime_type
  @mime_type
end

#photo_dataString

Base64 encoded photo data Corresponds to the JSON property photoData

Returns:

  • (String)


2913
2914
2915
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2913

def photo_data
  @photo_data
end

#primary_emailString

Primary email of User (Read-only) Corresponds to the JSON property primaryEmail

Returns:

  • (String)


2918
2919
2920
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2918

def primary_email
  @primary_email
end

#widthFixnum

Width in pixels of the photo Corresponds to the JSON property width

Returns:

  • (Fixnum)


2923
2924
2925
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2923

def width
  @width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2930

def update!(**args)
  @etag = args[:etag] if args.key?(:etag)
  @height = args[:height] if args.key?(:height)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @mime_type = args[:mime_type] if args.key?(:mime_type)
  @photo_data = args[:photo_data] if args.key?(:photo_data)
  @primary_email = args[:primary_email] if args.key?(:primary_email)
  @width = args[:width] if args.key?(:width)
end