Class: GetStream::Generated::Models::FeedGroupResponse

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/getstream_ruby/generated/models/feed_group_response.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#==, #inspect, omit_empty_fields, #to_h, #to_json

Constructor Details

#initialize(attributes = {}) ⇒ FeedGroupResponse

Initialize with attributes



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/getstream_ruby/generated/models/feed_group_response.rb', line 53

def initialize(attributes = {})
  super(attributes)
  @created_at = attributes[:created_at] || attributes['created_at']
  @id = attributes[:id] || attributes['id']
  @updated_at = attributes[:updated_at] || attributes['updated_at']
  @default_visibility = attributes[:default_visibility] || attributes['default_visibility'] || nil
  @deleted_at = attributes[:deleted_at] || attributes['deleted_at'] || nil
  @activity_processors = attributes[:activity_processors] || attributes['activity_processors'] || nil
  @activity_selectors = attributes[:activity_selectors] || attributes['activity_selectors'] || nil
  @aggregation = attributes[:aggregation] || attributes['aggregation'] || nil
  @custom = attributes[:custom] || attributes['custom'] || nil
  @notification = attributes[:notification] || attributes['notification'] || nil
  @push_notification = attributes[:push_notification] || attributes['push_notification'] || nil
  @ranking = attributes[:ranking] || attributes['ranking'] || nil
  @stories = attributes[:stories] || attributes['stories'] || nil
end

Instance Attribute Details

#activity_processorsArray<ActivityProcessorConfig>

Returns Configuration for activity processors.

Returns:



29
30
31
# File 'lib/getstream_ruby/generated/models/feed_group_response.rb', line 29

def activity_processors
  @activity_processors
end

#activity_selectorsArray<ActivitySelectorConfigResponse>

Returns Configuration for activity selectors.

Returns:



32
33
34
# File 'lib/getstream_ruby/generated/models/feed_group_response.rb', line 32

def activity_selectors
  @activity_selectors
end

#aggregationAggregationConfig

Returns:



35
36
37
# File 'lib/getstream_ruby/generated/models/feed_group_response.rb', line 35

def aggregation
  @aggregation
end

#created_atDateTime

Returns When the feed group was created.

Returns:

  • (DateTime)

    When the feed group was created



14
15
16
# File 'lib/getstream_ruby/generated/models/feed_group_response.rb', line 14

def created_at
  @created_at
end

#customObject

Returns Custom data for the feed group.

Returns:

  • (Object)

    Custom data for the feed group



38
39
40
# File 'lib/getstream_ruby/generated/models/feed_group_response.rb', line 38

def custom
  @custom
end

#default_visibilityString

Returns Default visibility for activities.

Returns:

  • (String)

    Default visibility for activities



23
24
25
# File 'lib/getstream_ruby/generated/models/feed_group_response.rb', line 23

def default_visibility
  @default_visibility
end

#deleted_atDateTime

Returns:

  • (DateTime)


26
27
28
# File 'lib/getstream_ruby/generated/models/feed_group_response.rb', line 26

def deleted_at
  @deleted_at
end

#idString

Returns Identifier within the group.

Returns:

  • (String)

    Identifier within the group



17
18
19
# File 'lib/getstream_ruby/generated/models/feed_group_response.rb', line 17

def id
  @id
end

#notificationNotificationConfig

Returns:



41
42
43
# File 'lib/getstream_ruby/generated/models/feed_group_response.rb', line 41

def notification
  @notification
end

#push_notificationPushNotificationConfig



44
45
46
# File 'lib/getstream_ruby/generated/models/feed_group_response.rb', line 44

def push_notification
  @push_notification
end

#rankingRankingConfig

Returns:



47
48
49
# File 'lib/getstream_ruby/generated/models/feed_group_response.rb', line 47

def ranking
  @ranking
end

#storiesStoriesConfig

Returns:



50
51
52
# File 'lib/getstream_ruby/generated/models/feed_group_response.rb', line 50

def stories
  @stories
end

#updated_atDateTime

Returns When the feed group was last updated.

Returns:

  • (DateTime)

    When the feed group was last updated



20
21
22
# File 'lib/getstream_ruby/generated/models/feed_group_response.rb', line 20

def updated_at
  @updated_at
end

Class Method Details

.json_field_mappingsObject

Override field mappings for JSON serialization



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'lib/getstream_ruby/generated/models/feed_group_response.rb', line 71

def self.json_field_mappings
  {
    created_at: 'created_at',
    id: 'id',
    updated_at: 'updated_at',
    default_visibility: 'default_visibility',
    deleted_at: 'deleted_at',
    activity_processors: 'activity_processors',
    activity_selectors: 'activity_selectors',
    aggregation: 'aggregation',
    custom: 'custom',
    notification: 'notification',
    push_notification: 'push_notification',
    ranking: 'ranking',
    stories: 'stories'
  }
end