1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
use frame_support::DebugNoBound;
use sp_std::marker::PhantomData;

use crate::{common::Limits, util::WithNonce};
use codec::{Decode, Encode};

use super::{StatusListCredential, StatusListCredentialId, StatusListCredentialWithPolicy};

#[derive(Encode, Decode, scale_info_derive::TypeInfo, DebugNoBound, Clone, PartialEq, Eq)]
pub struct AddStatusListCredential<T: Limits> {
    pub id: StatusListCredentialId,
    pub credential: StatusListCredentialWithPolicy<T>,
}

#[derive(Encode, Decode, scale_info_derive::TypeInfo, DebugNoBound, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "serde",
    serde(bound(serialize = "T: Sized", deserialize = "T: Sized"))
)]
#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))]
#[scale_info(skip_type_params(T))]
#[scale_info(omit_prefix)]
pub struct UpdateStatusListCredentialRaw<T: Limits> {
    pub id: StatusListCredentialId,
    pub credential: StatusListCredential<T>,
    #[codec(skip)]
    #[cfg_attr(feature = "serde", serde(skip))]
    pub _marker: PhantomData<T>,
}

#[derive(Encode, Decode, scale_info_derive::TypeInfo, DebugNoBound, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "serde",
    serde(bound(serialize = "T: Sized", deserialize = "T: Sized"))
)]
#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))]
#[scale_info(skip_type_params(T))]
#[scale_info(omit_prefix)]
pub struct RemoveStatusListCredentialRaw<T> {
    pub id: StatusListCredentialId,
    #[codec(skip)]
    #[cfg_attr(feature = "serde", serde(skip))]
    pub _marker: PhantomData<T>,
}

crate::impl_action!(for StatusListCredentialId: AddStatusListCredential with 1 as len, id as target no_state_change);

crate::impl_action! {
    for StatusListCredentialId:
        UpdateStatusListCredentialRaw with 1 as len, id as target no_state_change,
        RemoveStatusListCredentialRaw with 1 as len, id as target no_state_change
}

pub type UpdateStatusListCredential<T> = WithNonce<T, UpdateStatusListCredentialRaw<T>>;
pub type RemoveStatusListCredential<T> = WithNonce<T, RemoveStatusListCredentialRaw<T>>;

crate::impl_action_with_nonce! {
    for StatusListCredentialId:
        UpdateStatusListCredential with data().len() as len, data().id as target,
        RemoveStatusListCredential with data().len() as len, data().id as target
}