contactnoteIdPut method

Future<Response<WebApiModulesAgentContactNoteContactNote>> contactnoteIdPut({
  1. required String? id,
  2. required WebApiModulesAgentContactNoteContactNote? body,
})

@param id

Implementation

Future<chopper.Response<WebApiModulesAgentContactNoteContactNote>>
contactnoteIdPut({
  required String? id,
  required WebApiModulesAgentContactNoteContactNote? body,
}) {
  generatedMapping.putIfAbsent(
    WebApiModulesAgentContactNoteContactNote,
    () => WebApiModulesAgentContactNoteContactNote.fromJsonFactory,
  );

  return _contactnoteIdPut(id: id, body: body);
}