| 1035 | } |
| 1036 | |
| 1037 | static td::Status process_static_content(Ctx &ctx) { |
| 1038 | TRY_STATUS(ctx.process_obj_field("type", true, process_string)); |
| 1039 | TRY_STATUS(ctx.process_obj_field("content", true, |
| 1040 | [](Ctx &ctx) { return process_string_or_array(ctx, process_content_part); })); |
| 1041 | return td::Status::OK(); |
| 1042 | } |
| 1043 | |
| 1044 | static td::Status process_stream_options(Ctx &ctx) { |
| 1045 | TRY_STATUS(ctx.process_obj_field("include_obfuscation", false, process_boolean)); |
nothing calls this directly
no test coverage detected