@@ -2162,32 +2162,6 @@ export class Profile extends Entity {
2162
2162
}
2163
2163
}
2164
2164
2165
- get handle ( ) : string {
2166
- let value = this . get ( "handle" ) ;
2167
- return value ! . toString ( ) ;
2168
- }
2169
-
2170
- set handle ( value : string ) {
2171
- this . set ( "handle" , Value . fromString ( value ) ) ;
2172
- }
2173
-
2174
- get picture ( ) : string | null {
2175
- let value = this . get ( "picture" ) ;
2176
- if ( ! value || value . kind == ValueKind . NULL ) {
2177
- return null ;
2178
- } else {
2179
- return value . toString ( ) ;
2180
- }
2181
- }
2182
-
2183
- set picture ( value : string | null ) {
2184
- if ( ! value ) {
2185
- this . unset ( "picture" ) ;
2186
- } else {
2187
- this . set ( "picture" , Value . fromString ( < string > value ) ) ;
2188
- }
2189
- }
2190
-
2191
2165
get coverPicture ( ) : string | null {
2192
2166
let value = this . get ( "coverPicture" ) ;
2193
2167
if ( ! value || value . kind == ValueKind . NULL ) {
@@ -2248,23 +2222,6 @@ export class Profile extends Entity {
2248
2222
}
2249
2223
}
2250
2224
2251
- get followModule ( ) : string | null {
2252
- let value = this . get ( "followModule" ) ;
2253
- if ( ! value || value . kind == ValueKind . NULL ) {
2254
- return null ;
2255
- } else {
2256
- return value . toString ( ) ;
2257
- }
2258
- }
2259
-
2260
- set followModule ( value : string | null ) {
2261
- if ( ! value ) {
2262
- this . unset ( "followModule" ) ;
2263
- } else {
2264
- this . set ( "followModule" , Value . fromString ( < string > value ) ) ;
2265
- }
2266
- }
2267
-
2268
2225
get isDefault ( ) : boolean {
2269
2226
let value = this . get ( "isDefault" ) ;
2270
2227
return value ! . toBoolean ( ) ;
@@ -2712,23 +2669,6 @@ export class Post extends Entity {
2712
2669
}
2713
2670
}
2714
2671
2715
- get collectedBy ( ) : string | null {
2716
- let value = this . get ( "collectedBy" ) ;
2717
- if ( ! value || value . kind == ValueKind . NULL ) {
2718
- return null ;
2719
- } else {
2720
- return value . toString ( ) ;
2721
- }
2722
- }
2723
-
2724
- set collectedBy ( value : string | null ) {
2725
- if ( ! value ) {
2726
- this . unset ( "collectedBy" ) ;
2727
- } else {
2728
- this . set ( "collectedBy" , Value . fromString ( < string > value ) ) ;
2729
- }
2730
- }
2731
-
2732
2672
get reaction ( ) : string | null {
2733
2673
let value = this . get ( "reaction" ) ;
2734
2674
if ( ! value || value . kind == ValueKind . NULL ) {
0 commit comments