ClaimType returns the claimType value, or the empty string.
()
| 496 | |
| 497 | // ClaimType returns the claimType value, or the empty string. |
| 498 | func (bb *Builder) ClaimType() ClaimType { |
| 499 | if s, ok := bb.m["claimType"].(string); ok { |
| 500 | return ClaimType(s) |
| 501 | } |
| 502 | return "" |
| 503 | } |
| 504 | |
| 505 | // SetFileName sets the fileName or fileNameBytes field. |
| 506 | // The filename is truncated to just the base. |
no test coverage detected