1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
use crate::enums::Visibility;

pub struct UserBookmarkTagsIllustrationRequestArg {
    pub restrict: Visibility,
    pub offset: Option<u32>,
}

impl Default for UserBookmarkTagsIllustrationRequestArg {
    fn default() -> Self {
        UserBookmarkTagsIllustrationRequestArg {
            restrict: Visibility::Public,
            offset: None,
        }
    }
}