Type returns the camliType value.
()
| 488 | |
| 489 | // Type returns the camliType value. |
| 490 | func (bb *Builder) Type() CamliType { |
| 491 | if s, ok := bb.m["camliType"].(string); ok { |
| 492 | return CamliType(s) |
| 493 | } |
| 494 | return "" |
| 495 | } |
| 496 | |
| 497 | // ClaimType returns the claimType value, or the empty string. |
| 498 | func (bb *Builder) ClaimType() ClaimType { |
no test coverage detected