7 #ifndef __CLAIMS_NOTICE_H__
8 #define __CLAIMS_NOTICE_H__
28 void set_id(
const string &
id) { _id = id; }
36 string get_id()
const {
return _id; }
42 void set_notAfter(
const string ¬After) { _notAfter = notAfter; }
69 return _id.empty() && _notAfter.empty() && _acceptedDate.empty();
77 _acceptedDate.clear();
bool is_empty() const
Returns if the Notice object is empty.
Definition: ClaimsNotice.H:67
void set_id(const string &id)
Definition: ClaimsNotice.H:28
void set_notAfter(const string ¬After)
Sets the expiry of the claims notice.
Definition: ClaimsNotice.H:42
EPP Notice Class.
Definition: ClaimsNotice.H:13
string get_acceptedDate() const
Returns the date and time that the Claims Notice was accepted.
Definition: ClaimsNotice.H:61
ClaimsNotice()
Default constructor.
Definition: ClaimsNotice.H:17
string get_id() const
Definition: ClaimsNotice.H:36
void reset()
Reset object attributes.
Definition: ClaimsNotice.H:73
string get_notAfter() const
Returns the expiry of the claims notice.
Definition: ClaimsNotice.H:48
void set_acceptedDate(const string &acceptedDate)
Sets the date and time that the Claims Notice was accepted.
Definition: ClaimsNotice.H:55