Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikprijck committed Aug 22, 2023
1 parent 3b4e5b1 commit 1472ce2
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/management/__generated/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13749,3 +13749,23 @@ export interface PutAuthenticationMethodsRequest {
*/
id: string;
}
/**
*
*/
export interface GetUsersByEmailRequest {
/**
* Email address to search for (case-sensitive).
*
*/
email: string;
/**
* Comma-separated list of fields to include or exclude (based on value provided for include_fields) in the result. Leave empty to retrieve all fields.
*
*/
fields?: string;
/**
* Whether specified fields are to be included (true) or excluded (false). Defaults to true.
*
*/
include_fields?: boolean;
}

0 comments on commit 1472ce2

Please sign in to comment.