def self.primary_key_name : Symbol | Nil
#
class WebhookTrigger
- WebhookTrigger
- BaseModel
- Avram::Model
- Reference
- Object
Included Modules
- Avram::PrimaryKeyMethods
- DB::Mappable
- JSON::Serializable
- LuckyCache::Cachable
Defined in:
models/webhook_trigger.crConstant Summary
-
ASSOCIATIONS =
[{type: SlackTeam, assoc_name: slack_team, foreign_key: :slack_team_id, relationship_type: :belongs_to, through: nil}, {type: SlackChannel, assoc_name: slack_channel, foreign_key: :slack_channel_id, relationship_type: :belongs_to, through: nil}] of Nil
-
COLUMNS =
[{name: id, type: Int64, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: created_at, type: Time, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: updated_at, type: Time, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: slack_team_id, type: SlackTeam::PrimaryKeyType, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: slack_channel_id, type: SlackChannel::PrimaryKeyType, nilable: true, autogenerated: false, value: nil, serialized: false}, {name: event_type, type: WebhookTriggerEvent, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: action, type: WebhookTriggerAction, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: conditions, type: TriggerConditions, nilable: true, autogenerated: false, value: nil, serialized: true}] of Nil
-
PRIMARY_KEY_NAME =
:id
-
PRIMARY_KEY_TYPE =
Int64
Constructors
- .new(id : Int64, created_at : Time, updated_at : Time, slack_team_id : Int64, slack_channel_id : Int64 | Nil, event_type : Int32 | Int64, action : Int32 | Int64, conditions : TriggerConditions | Nil)
- .new(pull : JSON::PullParser)
- .new(__temp_191 : DB::ResultSet)
Class Method Summary
- .adapter
- .column_names : Array(Symbol)
- .columns : Array(NamedTuple(name: Symbol, nilable: Bool, type: String))
- .ensure_correct_column_mappings!
- .from_rs(__temp_191 : DB::ResultSet)
- .primary_key_name : Symbol | Nil
- .schema_enforcer_validations
- .table_name : String
Instance Method Summary
- #action : WebhookTriggerAction
- #action=(_action : WebhookTriggerAction::Lucky::ColumnType)
-
#base_query_class : ::WebhookTrigger::BaseQuery.class
This makes it easy for plugins and extensions to use the base SaveOperation
- #conditions : TriggerConditions | Nil
- #conditions=(_conditions : TriggerConditions | Nil)
- #created_at : Time
- #created_at=(_created_at : Time::Lucky::ColumnType)
- #delete_operation_class : ::WebhookTrigger::DeleteOperation.class
- #event_type : WebhookTriggerEvent
- #event_type=(_event_type : WebhookTriggerEvent::Lucky::ColumnType)
- #id : Int64
- #id=(_id : Int64::Lucky::ColumnType)
- #save_operation_class : ::WebhookTrigger::SaveOperation.class
- #slack_channel : SlackChannel | Nil
- #slack_channel! : SlackChannel | Nil
- #slack_channel_count : Int64
- #slack_channel_id : SlackChannel::PrimaryKeyType | Nil
- #slack_channel_id=(_slack_channel_id : SlackChannel::PrimaryKeyType::Lucky::ColumnType | Nil)
- #slack_channel_query
- #slack_team : SlackTeam
- #slack_team! : SlackTeam
- #slack_team_count : Int64
- #slack_team_id : SlackTeam::PrimaryKeyType
- #slack_team_id=(_slack_team_id : SlackTeam::PrimaryKeyType::Lucky::ColumnType)
- #slack_team_query
- #updated_at : Time
- #updated_at=(_updated_at : Time::Lucky::ColumnType)
Class methods inherited from class BaseModel
database : Avram::Database.class
database
Constructor Detail
def self.new(id : Int64, created_at : Time, updated_at : Time, slack_team_id : Int64, slack_channel_id : Int64 | Nil, event_type : Int32 | Int64, action : Int32 | Int64, conditions : TriggerConditions | Nil)
#
Class Method Detail
Instance Method Detail
This makes it easy for plugins and extensions to use the base SaveOperation