1 2 3 4 5 6 7 8 9 10 11 12 13 14
use super::super::types::node::Node; pub struct CreatePage { access_token: String, // 1 - 256 characters title: String, // 0 - 128 characters author_name: String, // 0 - 512 characters author_url: String, content: Vec<Node> } // returns Page object