From 6cee086d79feb3cfd624ebecdcb2cf5c31d9c5cf Mon Sep 17 00:00:00 2001 From: Paul Woolcock Date: Mon, 27 Aug 2018 05:47:05 -0400 Subject: [PATCH] Add `max_toot_chars` to the Instance model Closes #22 --- src/entities/instance.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/entities/instance.rs b/src/entities/instance.rs index 20d03c0..682cc87 100644 --- a/src/entities/instance.rs +++ b/src/entities/instance.rs @@ -25,6 +25,8 @@ pub struct Instance { pub languages: Option>, /// Contact account for the server. pub contact_account: Option, + /// The maximum number of characters allowed in a status + pub max_toot_chars: Option, } /// Object containing url for streaming api.