File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -186,6 +186,11 @@ std::optional<std::string> Appointment::getForceError() const
186
186
throw std::runtime_error (R"ex( this error was forced)ex" );
187
187
}
188
188
189
+ std::vector<response::IdType> Appointment::getArray () const
190
+ {
191
+ return {};
192
+ }
193
+
189
194
AppointmentEdge::AppointmentEdge (std::shared_ptr<Appointment> appointment)
190
195
: _appointment(std::move(appointment))
191
196
{
Original file line number Diff line number Diff line change @@ -146,6 +146,7 @@ class Appointment
146
146
std::shared_ptr<const response::Value> getSubject () const noexcept ;
147
147
bool getIsNow () const noexcept ;
148
148
std::optional<std::string> getForceError () const ;
149
+ std::vector<response::IdType> getArray () const ;
149
150
150
151
private:
151
152
response::IdType _id;
You can’t perform that action at this time.
0 commit comments