public string Path(bool withParameter = true) { if (withParameter && taskId != null) { return($"{parent.Path()}/data-export/{taskId}"); } return($"{parent.Path()}/data-export"); }
public string Path(bool withParameter = true) { if (withParameter && noteId != null) { return($"{parent.Path()}/notes/{noteId}"); } return($"{parent.Path()}/notes"); }
public string Path(bool withParameter = true) { if (withParameter && companyId != null) { return($"{parent.Path()}/companies/{companyId}"); } return($"{parent.Path()}/companies"); }
public string Path(bool withParameter = true) { if (withParameter && chatId != null) { return($"{parent.Path()}/conversations/{chatId}"); } return($"{parent.Path()}/conversations"); }
public string Path(bool withParameter = true) { if (withParameter && eventId != null) { return($"{parent.Path()}/events/{eventId}"); } return($"{parent.Path()}/events"); }
public string Path(bool withParameter = true) { if (withParameter && groupId != null) { return($"{parent.Path()}/groups/{groupId}"); } return($"{parent.Path()}/groups"); }
public string Path(bool withParameter = true) { if (withParameter && cardId != null) { return($"{parent.Path()}/adaptive-cards/{cardId}"); } return($"{parent.Path()}/adaptive-cards"); }
public string Path(bool withParameter = true) { if (withParameter && personId != null) { return($"{parent.Path()}/persons/{personId}"); } return($"{parent.Path()}/persons"); }
public string Path(bool withParameter = true) { if (withParameter && webhookId != null) { return($"{parent.Path()}/webhooks/{webhookId}"); } return($"{parent.Path()}/webhooks"); }
public string Path() { return($"{parent.Path()}/everyone"); }
public string Path() { return($"{parent.Path()}/favorites"); }
public string Path() { return($"{parent.Path()}/preferences"); }
public string Path() { return($"{parent.Path()}/groups"); }
public string Path() { return($"{parent.Path()}/recent"); }