CouchBase Model Views CouchbaseViewKey

Hi
Does Couchbase Model Views Support adding CouchbaseViewKey to a Complex property ?
If Yes How Do you specify the key value when doing a GetView?

public class PersonName { public string FirstName{get;set;} public string LastName{get;set;} }

public class User
{
[CouchbaseViewKey(“by_name”, “name”)]
public PersonName Name {get;set;}
}