Method: ChatWork::File.find
- Defined in:
- lib/chatwork/file.rb
.find(room_id:, file_id:, create_download_url: nil) {|response_body, response_header| ... } ⇒ Hashie::Mash
Get information about the specified file
65 66 67 |
# File 'lib/chatwork/file.rb', line 65 def self.find(room_id:, file_id:, create_download_url: nil, &block) ChatWork.client.find_file(room_id: room_id, file_id: file_id, create_download_url: create_download_url, &block) end |