|
@@ -10520,9 +10520,22 @@ func (m *CreditBalanceMutation) OldUserID(ctx context.Context) (v string, err er
|
|
|
return oldValue.UserID, nil
|
|
|
}
|
|
|
|
|
|
+// ClearUserID clears the value of the "user_id" field.
|
|
|
+func (m *CreditBalanceMutation) ClearUserID() {
|
|
|
+ m.user_id = nil
|
|
|
+ m.clearedFields[creditbalance.FieldUserID] = struct{}{}
|
|
|
+}
|
|
|
+
|
|
|
+// UserIDCleared returns if the "user_id" field was cleared in this mutation.
|
|
|
+func (m *CreditBalanceMutation) UserIDCleared() bool {
|
|
|
+ _, ok := m.clearedFields[creditbalance.FieldUserID]
|
|
|
+ return ok
|
|
|
+}
|
|
|
+
|
|
|
// ResetUserID resets all changes to the "user_id" field.
|
|
|
func (m *CreditBalanceMutation) ResetUserID() {
|
|
|
m.user_id = nil
|
|
|
+ delete(m.clearedFields, creditbalance.FieldUserID)
|
|
|
}
|
|
|
|
|
|
// SetBalance sets the "balance" field.
|
|
@@ -10952,6 +10965,9 @@ func (m *CreditBalanceMutation) ClearedFields() []string {
|
|
|
if m.FieldCleared(creditbalance.FieldDeletedAt) {
|
|
|
fields = append(fields, creditbalance.FieldDeletedAt)
|
|
|
}
|
|
|
+ if m.FieldCleared(creditbalance.FieldUserID) {
|
|
|
+ fields = append(fields, creditbalance.FieldUserID)
|
|
|
+ }
|
|
|
if m.FieldCleared(creditbalance.FieldStatus) {
|
|
|
fields = append(fields, creditbalance.FieldStatus)
|
|
|
}
|
|
@@ -10975,6 +10991,9 @@ func (m *CreditBalanceMutation) ClearField(name string) error {
|
|
|
case creditbalance.FieldDeletedAt:
|
|
|
m.ClearDeletedAt()
|
|
|
return nil
|
|
|
+ case creditbalance.FieldUserID:
|
|
|
+ m.ClearUserID()
|
|
|
+ return nil
|
|
|
case creditbalance.FieldStatus:
|
|
|
m.ClearStatus()
|
|
|
return nil
|
|
@@ -37375,9 +37394,22 @@ func (m *WhatsappMutation) OldCallback(ctx context.Context) (v string, err error
|
|
|
return oldValue.Callback, nil
|
|
|
}
|
|
|
|
|
|
+// ClearCallback clears the value of the "callback" field.
|
|
|
+func (m *WhatsappMutation) ClearCallback() {
|
|
|
+ m.callback = nil
|
|
|
+ m.clearedFields[whatsapp.FieldCallback] = struct{}{}
|
|
|
+}
|
|
|
+
|
|
|
+// CallbackCleared returns if the "callback" field was cleared in this mutation.
|
|
|
+func (m *WhatsappMutation) CallbackCleared() bool {
|
|
|
+ _, ok := m.clearedFields[whatsapp.FieldCallback]
|
|
|
+ return ok
|
|
|
+}
|
|
|
+
|
|
|
// ResetCallback resets all changes to the "callback" field.
|
|
|
func (m *WhatsappMutation) ResetCallback() {
|
|
|
m.callback = nil
|
|
|
+ delete(m.clearedFields, whatsapp.FieldCallback)
|
|
|
}
|
|
|
|
|
|
// SetAccount sets the "account" field.
|
|
@@ -37411,9 +37443,22 @@ func (m *WhatsappMutation) OldAccount(ctx context.Context) (v string, err error)
|
|
|
return oldValue.Account, nil
|
|
|
}
|
|
|
|
|
|
+// ClearAccount clears the value of the "account" field.
|
|
|
+func (m *WhatsappMutation) ClearAccount() {
|
|
|
+ m.account = nil
|
|
|
+ m.clearedFields[whatsapp.FieldAccount] = struct{}{}
|
|
|
+}
|
|
|
+
|
|
|
+// AccountCleared returns if the "account" field was cleared in this mutation.
|
|
|
+func (m *WhatsappMutation) AccountCleared() bool {
|
|
|
+ _, ok := m.clearedFields[whatsapp.FieldAccount]
|
|
|
+ return ok
|
|
|
+}
|
|
|
+
|
|
|
// ResetAccount resets all changes to the "account" field.
|
|
|
func (m *WhatsappMutation) ResetAccount() {
|
|
|
m.account = nil
|
|
|
+ delete(m.clearedFields, whatsapp.FieldAccount)
|
|
|
}
|
|
|
|
|
|
// SetNickname sets the "nickname" field.
|
|
@@ -38358,6 +38403,12 @@ func (m *WhatsappMutation) ClearedFields() []string {
|
|
|
if m.FieldCleared(whatsapp.FieldAk) {
|
|
|
fields = append(fields, whatsapp.FieldAk)
|
|
|
}
|
|
|
+ if m.FieldCleared(whatsapp.FieldCallback) {
|
|
|
+ fields = append(fields, whatsapp.FieldCallback)
|
|
|
+ }
|
|
|
+ if m.FieldCleared(whatsapp.FieldAccount) {
|
|
|
+ fields = append(fields, whatsapp.FieldAccount)
|
|
|
+ }
|
|
|
if m.FieldCleared(whatsapp.FieldOrganizationID) {
|
|
|
fields = append(fields, whatsapp.FieldOrganizationID)
|
|
|
}
|
|
@@ -38402,6 +38453,12 @@ func (m *WhatsappMutation) ClearField(name string) error {
|
|
|
case whatsapp.FieldAk:
|
|
|
m.ClearAk()
|
|
|
return nil
|
|
|
+ case whatsapp.FieldCallback:
|
|
|
+ m.ClearCallback()
|
|
|
+ return nil
|
|
|
+ case whatsapp.FieldAccount:
|
|
|
+ m.ClearAccount()
|
|
|
+ return nil
|
|
|
case whatsapp.FieldOrganizationID:
|
|
|
m.ClearOrganizationID()
|
|
|
return nil
|