about summary refs log tree commit diff
path: root/LibMatrix/StateEventTypes/Spec/JoinRulesEventData.cs
blob: b64c1dda99a0dae91340b7ad0edee28651fc283d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System.Text.Json.Serialization;
using LibMatrix.Helpers;
using LibMatrix.Interfaces;

namespace LibMatrix.StateEventTypes.Spec;

[MatrixEvent(EventName = "m.room.join_rules")]
public class JoinRulesEventData : IStateEventType {
    private static string Public = "public";
    private static string Invite = "invite";
    private static string Knock = "knock";

    /// <summary>
    /// one of ["public", "invite", "knock", "restricted", "knock_restricted"]
    /// "private" is reserved without implementation!
    /// </summary>
    [JsonPropertyName("join_rule")]
    public string JoinRule { get; set; }

    [JsonPropertyName("allow")]
    public List<AllowEntry> Allow { get; set; }

    public class AllowEntry {
        [JsonPropertyName("type")]
        public string Type { get; set; }

        [JsonPropertyName("room_id")]
        public string RoomId { get; set; }
    }
}