cronback-api-model 0.1.0

A set of API models for [cronback](https://cronback.me) API protocol. Cronback provides developers a reliable and flexible solution to schedule one-time, recurring cron, and on-demand webhooks.
Documentation
#![cfg(not(feature = "dto"))]

use derive_more::{Deref, Display, From, Into};
use serde::{Deserialize, Serialize};

#[derive(
    Debug,
    From,
    Into,
    Display,
    Clone,
    Serialize,
    Deserialize,
    PartialEq,
    Hash,
    Deref,
)]
pub struct AttemptId(String);

#[derive(
    Debug,
    From,
    Into,
    Display,
    Clone,
    Serialize,
    Deserialize,
    PartialEq,
    Hash,
    Deref,
)]
pub struct RunId(String);

#[derive(
    Debug,
    From,
    Into,
    Display,
    Clone,
    Serialize,
    Deserialize,
    PartialEq,
    Hash,
    Deref,
)]
pub struct TriggerId(String);