Sha256: cbb23e3d71bbb318d2f37a30b333b826831101d31f9f50dd2f3cd60f444beaa8

Contents?: true

Size: 731 Bytes

Versions: 2

Compression:

Stored size: 731 Bytes

Contents

# typed: strict

require "sorbet-runtime"

class GetThreadsResponse < T::Struct
  extend T::Sig

  class Log < T::Struct
    extend T::Sig

    const :id, Integer
    const :url, String # URI
    const :date, String # Time
    const :close, T::Boolean
    const :res, Integer
    const :files, Integer
    const :access, Integer
    const :public, T::Boolean
    const :text, String
    const :thumb, String
    const :del, Integer
    const :atid, T::Boolean
    const :last, String # Time
    const :path, String
    const :category, T::Array[String]
  end

  const :success, T::Boolean
  const :messages, T::Array[String]
  const :lastpage, Integer
  const :count, Integer
  const :cid, Integer
  const :logs, T::Array[Log]
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tsumanne-0.0.3 lib/tsumanne/models/get_threads.rb
tsumanne-0.0.2 lib/tsumanne/models/get_threads.rb