Class: Google::Apis::AnalyticsV3::Segment
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AnalyticsV3::Segment
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/analytics_v3/classes.rb,
generated/google/apis/analytics_v3/representations.rb,
generated/google/apis/analytics_v3/representations.rb 
Overview
JSON template for an Analytics segment.
Instance Attribute Summary collapse
- 
  
    
      #created  ⇒ DateTime 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Time the segment was created.
 - 
  
    
      #definition  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Segment definition.
 - 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Segment ID.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Resource type for Analytics segment.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Segment name.
 - 
  
    
      #segment_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Segment ID.
 - 
  
    
      #self_link  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Link for this segment.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Type for a segment.
 - 
  
    
      #updated  ⇒ DateTime 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Time the segment was last modified.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Segment 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Segment.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Segment
Returns a new instance of Segment
      4951 4952 4953  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4951 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#created ⇒ DateTime
Time the segment was created.
Corresponds to the JSON property created
      4909 4910 4911  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4909 def created @created end  | 
  
#definition ⇒ String
Segment definition.
Corresponds to the JSON property definition
      4914 4915 4916  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4914 def definition @definition end  | 
  
#id ⇒ String
Segment ID.
Corresponds to the JSON property id
      4919 4920 4921  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4919 def id @id end  | 
  
#kind ⇒ String
Resource type for Analytics segment.
Corresponds to the JSON property kind
      4924 4925 4926  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4924 def kind @kind end  | 
  
#name ⇒ String
Segment name.
Corresponds to the JSON property name
      4929 4930 4931  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4929 def name @name end  | 
  
#segment_id ⇒ String
Segment ID. Can be used with the 'segment' parameter in Core Reporting API.
Corresponds to the JSON property segmentId
      4934 4935 4936  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4934 def segment_id @segment_id end  | 
  
#self_link ⇒ String
Link for this segment.
Corresponds to the JSON property selfLink
      4939 4940 4941  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4939 def self_link @self_link end  | 
  
#type ⇒ String
Type for a segment. Possible values are "BUILT_IN" or "CUSTOM".
Corresponds to the JSON property type
      4944 4945 4946  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4944 def type @type end  | 
  
#updated ⇒ DateTime
Time the segment was last modified.
Corresponds to the JSON property updated
      4949 4950 4951  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4949 def updated @updated end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4956 def update!(**args) @created = args[:created] if args.key?(:created) @definition = args[:definition] if args.key?(:definition) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @segment_id = args[:segment_id] if args.key?(:segment_id) @self_link = args[:self_link] if args.key?(:self_link) @type = args[:type] if args.key?(:type) @updated = args[:updated] if args.key?(:updated) end  |