PCUIF: Add templates for PCU_IF_MSG_SUSP_REQ

Change-Id: Ib7661790b9531be829ee550ce889151ebe1885ac
diff --git a/library/PCUIF_Types.ttcn b/library/PCUIF_Types.ttcn
index 0c3f000..17adbd1 100644
--- a/library/PCUIF_Types.ttcn
+++ b/library/PCUIF_Types.ttcn
@@ -772,4 +772,36 @@
 	}
 }
 
+template (value) PCUIF_Message ts_PCUIF_SUSP_REQ(template (value) uint8_t bts_nr,
+						 template (value) OCT4 tlli,
+						 template (value) OCT6 ra_id,
+						 template (value) uint8_t cause) := {
+	msg_type := PCU_IF_MSG_SUSP_REQ,
+	bts_nr := bts_nr,
+	spare := '0000'O,
+	u := {
+		susp_req := {
+			tlli := tlli,
+			ra_id := ra_id,
+			cause := cause
+		}
+	}
+}
+template PCUIF_Message tr_PCUIF_SUSP_REQ(template uint8_t bts_nr,
+					 template OCT4 tlli,
+					 template OCT6 ra_id,
+					 template uint8_t cause) := {
+	msg_type := PCU_IF_MSG_SUSP_REQ,
+	bts_nr := bts_nr,
+	spare := '0000'O,
+	u := {
+		susp_req := {
+			tlli := tlli,
+			ra_id := ra_id,
+			cause := cause
+		}
+	}
+}
+
+
 } with { encode "RAW" variant "BYTEORDER(first)" };