| 1231 | } |
| 1232 | |
| 1233 | attachment::attachment(struct message* o) |
| 1234 | : id(0) |
| 1235 | , size(0) |
| 1236 | , width(0) |
| 1237 | , height(0) |
| 1238 | , ephemeral(false) |
| 1239 | , flags(0) |
| 1240 | , owner(o) |
| 1241 | { |
| 1242 | } |
| 1243 | |
| 1244 | attachment::attachment(struct message* o, json *j) : attachment(o) { |
| 1245 | this->id = snowflake_not_null(j, "id"); |
nothing calls this directly
no test coverage detected