File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed
app/code/Meta/BusinessExtension Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,21 @@ public function isPromotionsSyncEnabled(): bool;
84
84
*/
85
85
public function setIsPromotionsSyncEnabled (bool $ val ): void ;
86
86
87
+ /**
88
+ * IsActiveExtension Getter
89
+ *
90
+ * @return bool
91
+ */
92
+ public function isActiveExtension (): bool ;
93
+
94
+ /**
95
+ * IsActiveExtension Setter
96
+ *
97
+ * @param bool $val
98
+ * @return void
99
+ */
100
+ public function setIsActiveExtension (bool $ val ): void ;
101
+
87
102
/**
88
103
* ProductIdentifierAttr Getter
89
104
*
Original file line number Diff line number Diff line change @@ -109,6 +109,27 @@ public function setIsPromotionsSyncEnabled(bool $val): void
109
109
$ this ->setData ('isPromotionsSyncEnabled ' , $ val );
110
110
}
111
111
112
+ /**
113
+ * IsActiveExtension Getter
114
+ *
115
+ * @return bool
116
+ */
117
+ public function isActiveExtension (): bool
118
+ {
119
+ return $ this ->_getData ('isActiveExtension ' );
120
+ }
121
+
122
+ /**
123
+ * IsActiveExtension Setter
124
+ *
125
+ * @param bool $val
126
+ * @return void
127
+ */
128
+ public function setIsActiveExtension (bool $ val ): void
129
+ {
130
+ $ this ->setData ('isActiveExtension ' , $ val );
131
+ }
132
+
112
133
/**
113
134
* ProductIdentifierAttr Getter
114
135
*
You can’t perform that action at this time.
0 commit comments