pub type AuthAccountModel<Id> = Model<Id, AuthAccountData>;

Aliased Type§

struct AuthAccountModel<Id> {
    pub id: Id,
    pub version: u32,
    pub create_epoch_millis: i64,
    pub update_epoch_millis: i64,
    pub data: AuthAccountData,
}

Fields§

§id: Id§version: u32§create_epoch_millis: i64§update_epoch_millis: i64§data: AuthAccountData