jsonapis/entities/
link_object.rs

1use super::*;
2
3impl Entity<'_> for LinkObject {}
4
5#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
6pub struct LinkObject {
7    pub href: String,
8    pub meta: Option<MetaOrAttrs>,
9}