Sha256: 23debc6413a395b076046121d3af79ff8fe114d6b4eec32de0ab4484bf091701
Contents?: true
Size: 618 Bytes
Versions: 6
Compression:
Stored size: 618 Bytes
Contents
# frozen_string_literal: true require "json_schematize" require "json_schematize/generator" module SlackBot module Events module Schemas module Type class BotProfile < JsonSchematize::Generator schema_default option: :dig_type, value: :string add_field name: :id, type: String add_field name: :app_id, type: String add_field name: :name, type: String add_field name: :deleted, type: JsonSchematize::Boolean add_field name: :updated, type: String add_field name: :team_id, type: String end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems