示例#1
0
        public static ConnectionUpdatedMethod WithArgs(string otherId, string notes, int relationship)
        {
            var payload = new ConnectionUpdatedMethodPayload
            {
                OtherId      = otherId,
                Notes        = notes,
                Relationship = relationship
            };

            return(new ConnectionUpdatedMethod(payload));
        }
示例#2
0
 private ConnectionUpdatedMethod(ConnectionUpdatedMethodPayload data)
     : base(data)
 {
 }