Not all of your class properties need to be mappable, some can be ignored. This is where this decorator comes in handy!

import { BuildableResource, Properties } from "tapi.js";

@Properties.Resource
class TestClass extends BuildableResource {
	@Properties.Ignore
	public thingToBeIgnored: string;
}