File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed
Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,12 @@ public sealed partial class OrganizationMember
5454 [ global ::System . Text . Json . Serialization . JsonRequired ]
5555 public required global ::Ideogram . ApiProfileRole Role { get ; set ; }
5656
57+ /// <summary>
58+ /// User's full name if entered through user profile.
59+ /// </summary>
60+ [ global ::System . Text . Json . Serialization . JsonPropertyName ( "full_name" ) ]
61+ public string ? FullName { get ; set ; }
62+
5763 /// <summary>
5864 /// Additional properties that are not explicitly defined in the schema
5965 /// </summary>
@@ -83,6 +89,9 @@ public sealed partial class OrganizationMember
8389 /// Role within an enterprise organization profile<br/>
8490 /// Example: OWNER
8591 /// </param>
92+ /// <param name="fullName">
93+ /// User's full name if entered through user profile.
94+ /// </param>
8695#if NET7_0_OR_GREATER
8796 [ global ::System . Diagnostics . CodeAnalysis . SetsRequiredMembers ]
8897#endif
@@ -91,13 +100,15 @@ public OrganizationMember(
91100 string displayHandle ,
92101 string emailAddress ,
93102 string avatarUrl ,
94- global ::Ideogram . ApiProfileRole role )
103+ global ::Ideogram . ApiProfileRole role ,
104+ string ? fullName )
95105 {
96106 this . UserId = userId ?? throw new global ::System . ArgumentNullException ( nameof ( userId ) ) ;
97107 this . DisplayHandle = displayHandle ?? throw new global ::System . ArgumentNullException ( nameof ( displayHandle ) ) ;
98108 this . EmailAddress = emailAddress ?? throw new global ::System . ArgumentNullException ( nameof ( emailAddress ) ) ;
99109 this . AvatarUrl = avatarUrl ?? throw new global ::System . ArgumentNullException ( nameof ( avatarUrl ) ) ;
100110 this . Role = role ;
111+ this . FullName = fullName ;
101112 }
102113
103114 /// <summary>
Original file line number Diff line number Diff line change @@ -3250,11 +3250,13 @@ components:
32503250 - display_handle : john_doe
3251325132523252 role : OWNER
3253+ full_name : full_name
32533254 avatar_url : https://example.com/avatars/user123.jpg
32543255 user_id : dXNlcl8xMjM
32553256 - display_handle : john_doe
3256325732573258 role : OWNER
3259+ full_name : full_name
32583260 avatar_url : https://example.com/avatars/user123.jpg
32593261 user_id : dXNlcl8xMjM
32603262 OrganizationMember :
@@ -3290,10 +3292,16 @@ components:
32903292 example : https://example.com/avatars/user123.jpg
32913293 role :
32923294 $ref : ' #/components/schemas/ApiProfileRole'
3295+ full_name :
3296+ title : full_name
3297+ type : string
3298+ description : User's full name if entered through user profile.
3299+ nullable : true
32933300 example :
32943301 display_handle : john_doe
3295330232963303 role : OWNER
3304+ full_name : full_name
32973305 avatar_url : https://example.com/avatars/user123.jpg
32983306 user_id : dXNlcl8xMjM
32993307 CreateApiKeyResponse :
You can’t perform that action at this time.
0 commit comments