Sha256: 1cd576f2abb7fe77c27836809d5a45d117998c432ff6f091fd3f10246af0c41f

Contents?: true

Size: 448 Bytes

Versions: 5

Compression:

Stored size: 448 Bytes

Contents

module TD::Types
  # The supergroup location was changed.
  #
  # @attr old_location [TD::Types::ChatLocation, nil] Previous location; may be null.
  # @attr new_location [TD::Types::ChatLocation, nil] New location; may be null.
  class ChatEventAction::LocationChanged < ChatEventAction
    attribute :old_location, TD::Types::ChatLocation.optional.default(nil)
    attribute :new_location, TD::Types::ChatLocation.optional.default(nil)
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
tdlib-schema-1.7.0.4 lib/tdlib/types/chat_event_action/location_changed.rb
tdlib-schema-1.7.0.3 lib/tdlib/types/chat_event_action/location_changed.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/chat_event_action/location_changed.rb
tdlib-schema-1.7.0.1 lib/tdlib/types/chat_event_action/location_changed.rb
tdlib-ruby-2.2.0 lib/tdlib/types/chat_event_action/location_changed.rb