Skip to content

Commit

Permalink
Add created_at and updated_at to userRead schema
Browse files Browse the repository at this point in the history
  • Loading branch information
obsd committed Aug 19, 2024
1 parent 3256fa3 commit be9b59a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/openapi/types/user-read.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,16 @@ export interface UserRead {
* @memberof UserRead
*/
attributes?: object;
/**
* The date the user was created.
* @type {string}
* @memberof UserRead
*/
created_at: string;
/**
* The date the user was last updated.
* @type {string}
* @memberof UserRead
*/
updated_at: string;
}

0 comments on commit be9b59a

Please sign in to comment.