Class: Google::Apis::DfareportingV3_0::PostalCode
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_0::PostalCode
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v3_0/classes.rb,
generated/google/apis/dfareporting_v3_0/representations.rb,
generated/google/apis/dfareporting_v3_0/representations.rb 
Overview
Contains information about a postal code that can be targeted by ads.
Instance Attribute Summary collapse
- 
  
    
      #code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Postal code.
 - 
  
    
      #country_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Country code of the country to which this postal code belongs.
 - 
  
    
      #country_dart_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
DART ID of the country to which this postal code belongs.
 - 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
ID of this postal code.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies what kind of resource this is.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PostalCode 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of PostalCode.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ PostalCode
Returns a new instance of PostalCode
      8958 8959 8960  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 8958 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#code ⇒ String
Postal code. This is equivalent to the id field.
Corresponds to the JSON property code
      8935 8936 8937  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 8935 def code @code end  | 
  
#country_code ⇒ String
Country code of the country to which this postal code belongs.
Corresponds to the JSON property countryCode
      8940 8941 8942  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 8940 def country_code @country_code end  | 
  
#country_dart_id ⇒ Fixnum
DART ID of the country to which this postal code belongs.
Corresponds to the JSON property countryDartId
      8945 8946 8947  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 8945 def country_dart_id @country_dart_id end  | 
  
#id ⇒ String
ID of this postal code.
Corresponds to the JSON property id
      8950 8951 8952  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 8950 def id @id end  | 
  
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#postalCode".
Corresponds to the JSON property kind
      8956 8957 8958  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 8956 def kind @kind end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      8963 8964 8965 8966 8967 8968 8969  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 8963 def update!(**args) @code = args[:code] if args.key?(:code) @country_code = args[:country_code] if args.key?(:country_code) @country_dart_id = args[:country_dart_id] if args.key?(:country_dart_id) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) end  |